about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-cmp-str-false.nix
{
  eq = "test" == "not test";
  ne = "test" != "test";
  lt = "bcd" < "abc";
  le = "bcd" <= "abc";
  gt = "abc" > "bcd";
  ge = "abc" >= "bcd";
}