diff options
author | Rami Ali <flowergrass@users.noreply.github.com> | 2017-01-17 17:26:59 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-17 17:42:37 +1100 |
commit | 5e80c53c115e8b45df598ffdbc45dfdd543be8ac (patch) | |
tree | 2e78f29dfd636340d645afcb4d17d6168767d356 | |
parent | d7150b09d752b48bfa5df66fd1438bbcca18eb09 (diff) | |
download | micropython-5e80c53c115e8b45df598ffdbc45dfdd543be8ac.tar.gz micropython-5e80c53c115e8b45df598ffdbc45dfdd543be8ac.zip |
tests/extmod: Improve test coverage of ure module.
-rw-r--r-- | tests/extmod/ure1.py | 4 | ||||
-rw-r--r-- | tests/extmod/ure_split_notimpl.py | 7 | ||||
-rw-r--r-- | tests/extmod/ure_split_notimpl.py.exp | 1 |
3 files changed, 12 insertions, 0 deletions
diff --git a/tests/extmod/ure1.py b/tests/extmod/ure1.py index aeadf4e5c5..48537c2ea5 100644 --- a/tests/extmod/ure1.py +++ b/tests/extmod/ure1.py @@ -11,6 +11,10 @@ try: except IndexError: print("IndexError") +# conversion of re and match to string +str(r) +str(m) + r = re.compile("(.+)1") m = r.match("xyz781") print(m.group(0)) diff --git a/tests/extmod/ure_split_notimpl.py b/tests/extmod/ure_split_notimpl.py new file mode 100644 index 0000000000..724e9d43be --- /dev/null +++ b/tests/extmod/ure_split_notimpl.py @@ -0,0 +1,7 @@ +import ure as re + +r = re.compile('( )') +try: + s = r.split("a b c foobar") +except NotImplementedError: + print('NotImplementedError') diff --git a/tests/extmod/ure_split_notimpl.py.exp b/tests/extmod/ure_split_notimpl.py.exp new file mode 100644 index 0000000000..437f616708 --- /dev/null +++ b/tests/extmod/ure_split_notimpl.py.exp @@ -0,0 +1 @@ +NotImplementedError |