dash: add test

main
Christian Kampka 2 years ago
parent 1ea75adb02
commit ce00fa6d26
No known key found for this signature in database
GPG Key ID: B88E140DB4FE1AA5
  1. 10
      pkgs/shells/dash/default.nix

@ -5,6 +5,8 @@
, fetchurl
, fetchpatch
, libedit
, runCommand
, dash
}:
stdenv.mkDerivation rec {
@ -52,5 +54,13 @@ stdenv.mkDerivation rec {
passthru = {
shellPath = "/bin/dash";
tests = {
"execute-simple-command" = runCommand "${pname}-execute-simple-command" { } ''
mkdir $out
${dash}/bin/dash -c 'echo "Hello World!" > $out/success'
[ -s $out/success ]
grep -q "Hello World" $out/success
'';
};
};
}

Loading…
Cancel
Save