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