From 0462299bc112c7d7a8907949eb0871175047001f Mon Sep 17 00:00:00 2001 From: "Sunrim KIM (keen)" <3han5chou7@gmail.com> Date: Sun, 20 Jul 2014 18:03:37 +0900 Subject: [PATCH] remove miscommited test --- contrib/10.regexp/t/test.scm | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 contrib/10.regexp/t/test.scm diff --git a/contrib/10.regexp/t/test.scm b/contrib/10.regexp/t/test.scm deleted file mode 100644 index b2a76f49..00000000 --- a/contrib/10.regexp/t/test.scm +++ /dev/null @@ -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 "))