about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-cmp-str-false.nix
blob: b5773a21d37417ff3f4a535ccf66d7f325b872ee (plain) (blame)
1
2
3
4
5
6
7
8
{
  eq = "test" == "not test";
  ne = "test" != "test";
  lt = "bcd" < "abc";
  le = "bcd" <= "abc";
  gt = "abc" > "bcd";
  ge = "abc" >= "bcd";
}