tests/micropython: Add test for micropython.stack_use() function.
This commit is contained in:
parent
e81116d07d
commit
eae819c0ed
|
@ -0,0 +1,7 @@
|
||||||
|
# tests stack_use function in micropython module
|
||||||
|
import micropython
|
||||||
|
|
||||||
|
if not hasattr(micropython, 'stack_use'):
|
||||||
|
print('SKIP')
|
||||||
|
else:
|
||||||
|
print(type(micropython.stack_use())) # output varies
|
|
@ -0,0 +1 @@
|
||||||
|
<class 'int'>
|
Loading…
Reference in New Issue