From 4e063b2abc402ac4d6902647e821978269025c7d Mon Sep 17 00:00:00 2001 From: Akshay Date: Wed, 3 Nov 2021 14:48:35 +0530 Subject: add snapshot test suite --- bin/tests/data/bool_comparison.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bin/tests/data/bool_comparison.nix (limited to 'bin/tests/data/bool_comparison.nix') diff --git a/bin/tests/data/bool_comparison.nix b/bin/tests/data/bool_comparison.nix new file mode 100644 index 0000000..dee2d08 --- /dev/null +++ b/bin/tests/data/bool_comparison.nix @@ -0,0 +1,13 @@ +[ + # trivial + (a == true) + (b == true) + (true == c) + (true == d) + + # not equals + (e != true) + (f != false) + (true != g) + (false != h) +] -- cgit v1.2.3