remove miscommited test

This commit is contained in:
Sunrim KIM (keen) 2014-07-20 18:03:37 +09:00
parent cdee9d9134
commit 0462299bc1
1 changed files with 0 additions and 11 deletions

View File

@ -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 "))