summaryrefslogtreecommitdiff
path: root/tests/utils.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils.scm')
-rw-r--r--tests/utils.scm8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/utils.scm b/tests/utils.scm
index 4f6ecc514de..017d9170fa7 100644
--- a/tests/utils.scm
+++ b/tests/utils.scm
@@ -82,6 +82,14 @@
82 (string-tokenize* "foo!bar!" "!") 82 (string-tokenize* "foo!bar!" "!")
83 (string-tokenize* "foo+-+bar+-+baz" "+-+"))) 83 (string-tokenize* "foo+-+bar+-+baz" "+-+")))
84 84
85(test-equal "string-replace-substring"
86 '("foo BAR! baz"
87 "/gnu/store/chbouib"
88 "")
89 (list (string-replace-substring "foo bar baz" "bar" "BAR!")
90 (string-replace-substring "/nix/store/chbouib" "/nix/" "/gnu/")
91 (string-replace-substring "" "foo" "bar")))
92
85(test-equal "fold2, 1 list" 93(test-equal "fold2, 1 list"
86 (list (reverse (iota 5)) 94 (list (reverse (iota 5))
87 (map - (reverse (iota 5)))) 95 (map - (reverse (iota 5))))