diff options
author | Rutger Broekhoff | 2025-07-07 21:52:08 +0200 |
---|---|---|
committer | Rutger Broekhoff | 2025-07-07 21:52:08 +0200 |
commit | ba61dfd69504ec6263a9dee9931d93adeb6f3142 (patch) | |
tree | d6c9b78e50eeab24e0c1c09ab45909a6ae3fd5db /test/testdata/eval-okay-concatstringssep.nix | |
download | verified-dyn-lang-interp-ba61dfd69504ec6263a9dee9931d93adeb6f3142.tar.gz verified-dyn-lang-interp-ba61dfd69504ec6263a9dee9931d93adeb6f3142.zip |
Initialize repository
Diffstat (limited to 'test/testdata/eval-okay-concatstringssep.nix')
-rw-r--r-- | test/testdata/eval-okay-concatstringssep.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/testdata/eval-okay-concatstringssep.nix b/test/testdata/eval-okay-concatstringssep.nix new file mode 100644 index 0000000..adc4c41 --- /dev/null +++ b/test/testdata/eval-okay-concatstringssep.nix | |||
@@ -0,0 +1,8 @@ | |||
1 | with builtins; | ||
2 | |||
3 | [ (concatStringsSep "" []) | ||
4 | (concatStringsSep "" ["foo" "bar" "xyzzy"]) | ||
5 | (concatStringsSep ", " ["foo" "bar" "xyzzy"]) | ||
6 | (concatStringsSep ", " ["foo"]) | ||
7 | (concatStringsSep ", " []) | ||
8 | ] | ||