[test] new regexp test

This commit is contained in:
Ben Greenman 2016-07-07 13:38:24 -04:00
parent c27e1b2efa
commit 5881bd94e0

View File

@ -83,6 +83,11 @@
(U #f (List String)))
'("hello"))
(check-equal?
(ann (regexp-match: "\\(a+\\)([ab]*)" "(aa)bb")
(U #f (List String String)))
'("(aa)bb" "bb"))
(check-equal?
(ann
(regexp-match: "hello" "world")