mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-07 19:14:19 +00:00
Add 1 more each for < and >
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user