tests: Replace umodule with module everywhere.
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
25
tests/extmod/re_error.py
Normal file
25
tests/extmod/re_error.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# test errors in regex
|
||||
|
||||
try:
|
||||
import re
|
||||
except ImportError:
|
||||
print("SKIP")
|
||||
raise SystemExit
|
||||
|
||||
|
||||
def test_re(r):
|
||||
try:
|
||||
re.compile(r)
|
||||
print("OK")
|
||||
except: # uPy and CPy use different errors, so just ignore the type
|
||||
print("Error")
|
||||
|
||||
|
||||
test_re(r"?")
|
||||
test_re(r"*")
|
||||
test_re(r"+")
|
||||
test_re(r")")
|
||||
test_re(r"[")
|
||||
test_re(r"([")
|
||||
test_re(r"([)")
|
||||
test_re(r"[a\]")
|
||||
Reference in New Issue
Block a user