about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-concatstringssep.nix
blob: cd94ca99b4997818925d1211dc8ebdf3012b2419 (plain) (blame)
1
2
3
4
5
6
7
8
9
with builtins;

[
  (concatStringsSep "" [ ])
  (concatStringsSep "" [ "foo" "bar" "xyzzy" ])
  (concatStringsSep ", " [ "foo" "bar" "xyzzy" ])
  (concatStringsSep ", " [ "foo" ])
  (concatStringsSep ", " [ ])
]