tests/extmod: Add vfs_posix.py test for uos.VfsPosix class.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
5a7027915c
commit
6a3d70db96
23
tests/extmod/vfs_posix.py
Normal file
23
tests/extmod/vfs_posix.py
Normal file
@ -0,0 +1,23 @@
|
||||
# Test for VfsPosix
|
||||
|
||||
try:
|
||||
import uos
|
||||
|
||||
uos.VfsPosix
|
||||
except (ImportError, AttributeError):
|
||||
print("SKIP")
|
||||
raise SystemExit
|
||||
|
||||
|
||||
# getcwd and chdir
|
||||
curdir = uos.getcwd()
|
||||
uos.chdir("/")
|
||||
print(uos.getcwd())
|
||||
uos.chdir(curdir)
|
||||
print(uos.getcwd() == curdir)
|
||||
|
||||
# stat
|
||||
print(type(uos.stat("/")))
|
||||
|
||||
# listdir and ilistdir
|
||||
print(type(uos.listdir("/")))
|
4
tests/extmod/vfs_posix.py.exp
Normal file
4
tests/extmod/vfs_posix.py.exp
Normal file
@ -0,0 +1,4 @@
|
||||
/
|
||||
True
|
||||
<class 'tuple'>
|
||||
<class 'list'>
|
Loading…
Reference in New Issue
Block a user