Handle reverse ranges

This is really ugly and should be refactored.
This commit is contained in:
Arthur Targaryen
2021-10-09 01:18:17 +02:00
parent 8783cf0138
commit d3bc096d47
2 changed files with 39 additions and 11 deletions

View File

@ -590,10 +590,15 @@ fn non_string_in_string() -> TestResult {
}
#[test]
fn int_in_range() -> TestResult {
fn int_in_inc_range() -> TestResult {
run_test(r#"1 in -4..9.42"#, "true")
}
#[test]
fn int_in_dec_range() -> TestResult {
run_test(r#"1 in 9.42..-4"#, "true")
}
#[test]
fn int_in_exclusive_range() -> TestResult {
run_test(r#"3 in 0..<3"#, "false")