about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-compare-lists.nix
blob: 9b73df61d84e89e6269c95867a679315e8c31a1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[
  ([1 2] < [1])
  ([1 2] < [2 3])
  ([1 2] < [2])
  ([1 2] < [1 2 3])
  ([3 4] < [1])
  ([1 2] > [1])
  ([1 2] > [2 3])
  ([1 2] > [2])
  ([1 2] > [1 2 3])
  ([3 4] > [1])
  ([1 2] <= [1])
  ([1 2] >= [2 3])
  ([1 2] >= [2])
  ([1 2] <= [1 2 3])
  ([3 4] >= [1])
]