mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Add 1 more each for < and >
This commit is contained in:
@@ -15,7 +15,9 @@ Test :: struct {
|
|||||||
CASES := []Test{
|
CASES := []Test{
|
||||||
{"hellope", "hellope", {.Eq=true, .Lt=false, .Gt=false}},
|
{"hellope", "hellope", {.Eq=true, .Lt=false, .Gt=false}},
|
||||||
{"Hellope", "hellope", {.Eq=false, .Lt=true, .Gt=false}}, // H < h
|
{"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 }},
|
{"Hellope!", "Hellope", {.Eq=false, .Lt=false, .Gt=true }},
|
||||||
|
{"Hellopf", "Hellope", {.Eq=false, .Lt=false, .Gt=true }},
|
||||||
}
|
}
|
||||||
|
|
||||||
@test
|
@test
|
||||||
|
|||||||
Reference in New Issue
Block a user