diff --git a/tests/extmod/ure1.py b/tests/extmod/ure1.py
index aeadf4e5c5c9d7821b4de0c53a52b5f56c8724f9..48537c2ea591383f913cb94abc22810fa096654d 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 0000000000000000000000000000000000000000..724e9d43be72737d36f7475d245e29b77f778c49
--- /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 0000000000000000000000000000000000000000..437f616708c83d7f028bbc23d10ae26807d2e25e
--- /dev/null
+++ b/tests/extmod/ure_split_notimpl.py.exp
@@ -0,0 +1 @@
+NotImplementedError