diff options
Diffstat (limited to 'test/testdata/eval-fail-assert-equal-derivations-extra.nix')
-rw-r--r-- | test/testdata/eval-fail-assert-equal-derivations-extra.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/testdata/eval-fail-assert-equal-derivations-extra.nix b/test/testdata/eval-fail-assert-equal-derivations-extra.nix new file mode 100644 index 0000000..fd8bc3f --- /dev/null +++ b/test/testdata/eval-fail-assert-equal-derivations-extra.nix | |||
@@ -0,0 +1,5 @@ | |||
1 | assert | ||
2 | { foo = { type = "derivation"; outPath = "/nix/store/0"; }; } | ||
3 | == | ||
4 | { foo = { type = "derivation"; outPath = "/nix/store/1"; devious = true; }; }; | ||
5 | throw "unreachable" \ No newline at end of file | ||