Adding extra regexp-split test case.

This commit is contained in:
Alex Shinn 2013-10-15 14:27:39 +09:00
parent 617fbbba6a
commit 5c5a279657

View file

@ -148,6 +148,7 @@
(test '("abc" "def" "ghi") (regexp-split '(+ digit) "abc123def456ghi789"))
(test '("a" "b" "c" "d" "e" "f" "g" "h" "i")
(regexp-split '(* digit) "abc123def456ghi789"))
(test '("a" "b") (regexp-split '(+ whitespace) "a b"))
(test "abc def" (regexp-replace '(+ space) "abc \t\n def" " "))
(test " abc-abc"