tests/micropython: Add test for micropython.stack_use() function.
This commit is contained in:
parent
e81116d07d
commit
eae819c0ed
7
tests/micropython/stack_use.py
Normal file
7
tests/micropython/stack_use.py
Normal file
@ -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
|
1
tests/micropython/stack_use.py.exp
Normal file
1
tests/micropython/stack_use.py.exp
Normal file
@ -0,0 +1 @@
|
||||
<class 'int'>
|
Loading…
Reference in New Issue
Block a user