tests: Add feature check for slice and skip corresponding tests.

This commit is contained in:
Damien George
2019-10-29 21:44:22 +11:00
parent 9162a87d4d
commit ecb77e40e0
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
try:
slice
print("slice")
except NameError:
print("no")

View File