about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/hello/test.nix
blob: 7acded2a16f2d570a4b6a6640523b31d26dbd157 (plain) (blame)
1
2
3
4
5
6
7
8
{ runCommand, hello }:

runCommand "hello-test-run" {
  nativeBuildInputs = [ hello ];
} ''
  diff -U3 --color=auto <(hello) <(echo 'Hello, world!')
  touch $out
''