summaryrefslogtreecommitdiff
path: root/tests/micropython/native_const.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-07 07:12:14 +0100
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-07 07:12:58 +0100
commitc98d7461a1c54b11b106ffb630ec079e1ab60993 (patch)
treef5976d6eaa6757c61e2b6e4162fe9fc860f1034c /tests/micropython/native_const.py
parent1bd17de4b782487725a611acb407f64fa41ae257 (diff)
tests/micropython/: Split off intbig tests.
Diffstat (limited to 'tests/micropython/native_const.py')
-rw-r--r--tests/micropython/native_const.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/micropython/native_const.py b/tests/micropython/native_const.py
deleted file mode 100644
index 611b39d8f..000000000
--- a/tests/micropython/native_const.py
+++ /dev/null
@@ -1,7 +0,0 @@
-# check loading constants
-
-@micropython.native
-def f():
- return 123456789012345678901234567890
-
-print(f())