mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 20:50:14 +01:00
tests: Improve feature detection for VFS.
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import uerrno
|
||||
try:
|
||||
import uos
|
||||
except ImportError:
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
# test VFS functionality with a user-defined filesystem
|
||||
# also tests parts of uio.IOBase implementation
|
||||
|
||||
import sys, uio
|
||||
import sys
|
||||
|
||||
try:
|
||||
import uio
|
||||
uio.IOBase
|
||||
import uos
|
||||
uos.mount
|
||||
|
||||
Reference in New Issue
Block a user