X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/49d58bdf61c8ee7da0de30a3c806e3964f583831..17906b2786e4c5e57a66874fd78c9cf70e074677:/tests/alias.sh diff --git a/tests/alias.sh b/tests/alias.sh new file mode 100755 index 0000000..5bc611b --- /dev/null +++ b/tests/alias.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +repo_dir="`mktemp -d`" +repo="$repo_dir/repo" +git init "$repo" +( + cd "$repo" + echo Contents > test-file + git add test-file + git commit -m 'Commit message' +) + +conf="`mktemp`" +cat > "$conf" <'\'' --install --from-expression '\''f: f \{ name = "(repo-[0-9]{10}-[0-9a-f]{11})"; channelName = "bar"; src = builtins.storePath "/nix/store/.{32}-\1.tar.xz"; \}'\'' '\''f: f \{ name = "\1"; channelName = "foo"; src = builtins.storePath "/nix/store/.{32}-\1.tar.xz"; \}'\''$' + +if echo "$actual_env_command" | egrep "$expected_env_command_RE" > /dev/null;then + echo PASS +else + echo "Output: $actual_env_command" + echo "does not match RE: $expected_env_command_RE" + exit 1 +fi