remove miscommited test
This commit is contained in:
parent
cdee9d9134
commit
0462299bc1
|
@ -1,11 +0,0 @@
|
|||
(import (scheme base)
|
||||
(picrin test)
|
||||
(picrin regexp))
|
||||
|
||||
(test #t (regexp? (regexp "simple")))
|
||||
(test #f (regexp? "it\\s[s]e+ms\\s(reg)?exp"))
|
||||
(test-values '(("abcd") ("b")) (regexp-match (regexp "a(b)cd") "abdacabcd"))
|
||||
(test '("a" "b" "c" "d") (regexp-split (regexp ",") "a,b,c,d"))
|
||||
(test '("a" "b" "c" "d") (regexp-split (regexp "\.+") "a.b....c.....d"))
|
||||
(test "newline tab spase " (regexp-replace (regexp "\\s") " " "newline
|
||||
tab space "))
|
Loading…
Reference in New Issue