Add 1 more each for < and >

This commit is contained in:
Jeroen van Rijn
2024-05-12 23:43:05 +02:00
parent 55d21f4c2f
commit 41b8f06f51

View File

@@ -15,7 +15,9 @@ Test :: struct {
CASES := []Test{
{"hellope", "hellope", {.Eq=true, .Lt=false, .Gt=false}},
{"Hellope", "hellope", {.Eq=false, .Lt=true, .Gt=false}}, // H < h
{"Hell", "Hellope", {.Eq=false, .Lt=true, .Gt=false}},
{"Hellope!", "Hellope", {.Eq=false, .Lt=false, .Gt=true }},
{"Hellopf", "Hellope", {.Eq=false, .Lt=false, .Gt=true }},
}
@test