mirror of
https://github.com/NixOS/nix
synced 2025-06-25 06:31:14 +02:00
tests: test nix-shell shebang quoting
This commit is contained in:
parent
595010b631
commit
e053eeb272
2 changed files with 15 additions and 0 deletions
10
tests/functional/shell.shebang.nix
Executable file
10
tests/functional/shell.shebang.nix
Executable file
|
@ -0,0 +1,10 @@
|
|||
#! @ENV_PROG@ nix-shell
|
||||
#! nix-shell -I nixpkgs=shell.nix --no-substitute
|
||||
#! nix-shell --argstr s1 'foo "bar" \baz'"'"'qux' --argstr s2 "foo 'bar' \"\baz" --argstr s3 \foo\ bar\'baz --argstr s4 ''
|
||||
#! nix-shell shell.shebang.nix --command true
|
||||
{ s1, s2, s3, s4 }:
|
||||
assert s1 == ''foo "bar" \baz'qux'';
|
||||
assert s2 == "foo 'bar' \"baz";
|
||||
assert s3 == "foo bar'baz";
|
||||
assert s4 == "";
|
||||
(import <nixpkgs> {}).runCommand "nix-shell" {} ""
|
Loading…
Add table
Add a link
Reference in a new issue