summaryrefslogtreecommitdiff
path: root/tests/float/types.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-17 16:21:43 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-17 16:21:43 +0100
commit5cd0b2227f1c36584129cdce86dd20952b45581c (patch)
treebef451353a1a0f0a5050fbbd0df8eb550b728278 /tests/float/types.py
parentd7a4b6903931f9e42686f4c4f3c3c8e9485c143f (diff)
tests: Split out those tests requiring float and import.
Tests in basics (which should probably be renamed to core) should not rely on float, or import any non-built-in files. This way these tests can be run when those features are not available. All test in basics now pass on the pyboard using stmhal port, except for string-repr which has some issues with character hex printing.
Diffstat (limited to 'tests/float/types.py')
-rw-r--r--tests/float/types.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/float/types.py b/tests/float/types.py
new file mode 100644
index 000000000..75674c924
--- /dev/null
+++ b/tests/float/types.py
@@ -0,0 +1,17 @@
+# float types
+
+print(float)
+print(complex)
+
+print(type(float()) == float)
+print(type(complex()) == complex)
+
+print(type(0.0) == float)
+print(type(1j) == complex)
+
+# hashing float types
+
+d = dict()
+d[float] = complex
+d[complex] = float
+print(len(d))