ee7d03f7d7
I tried to pay attention to what was actually being tested so, e.g. when I test was just using a vec as a boxed thing, I converted to boxed ints, etc. Haven't converted the macro tests yet. Not sure what to do there.
16 lines
483 B
Rust
16 lines
483 B
Rust
|
|
|
|
fn main() {
|
|
assert ("hello" < "hellr");
|
|
assert ("hello " > "hello");
|
|
assert ("hello" != "there");
|
|
assert (~[1, 2, 3, 4] > ~[1, 2, 3]);
|
|
assert (~[1, 2, 3] < ~[1, 2, 3, 4]);
|
|
assert (~[1, 2, 4, 4] > ~[1, 2, 3, 4]);
|
|
assert (~[1, 2, 3, 4] < ~[1, 2, 4, 4]);
|
|
assert (~[1, 2, 3] <= ~[1, 2, 3]);
|
|
assert (~[1, 2, 3] <= ~[1, 2, 3, 3]);
|
|
assert (~[1, 2, 3, 4] > ~[1, 2, 3]);
|
|
assert (~[1, 2, 3] == ~[1, 2, 3]);
|
|
assert (~[1, 2, 3] != ~[1, 1, 3]);
|
|
} |