tests: Actuall add feature check for complex type being available.

This commit is contained in:
Paul Sokolovsky 2015-12-06 15:13:26 +02:00
parent eed2f36ae2
commit cbc489dff5
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
try:
complex
print("complex")
except NameError:
print("no")

View File