mirror of
https://github.com/nushell/nushell
synced 2024-12-31 23:39:00 +00:00
96a1bf5f8d
* Change true/false to keywords * oops, clippy * Both kinds of bools * Add in some boolean variables * disable py virtualenv test for now
61 lines
1,001 B
Rust
61 lines
1,001 B
Rust
use crate::tests::{fail_test, run_test, TestResult};
|
|
|
|
#[test]
|
|
fn add_simple() -> TestResult {
|
|
run_test("3 + 4", "7")
|
|
}
|
|
|
|
#[test]
|
|
fn add_simple2() -> TestResult {
|
|
run_test("3 + 4 + 9", "16")
|
|
}
|
|
|
|
#[test]
|
|
fn broken_math() -> TestResult {
|
|
fail_test("3 + ", "incomplete")
|
|
}
|
|
|
|
#[test]
|
|
fn modulo1() -> TestResult {
|
|
run_test("5 mod 2", "1")
|
|
}
|
|
|
|
#[test]
|
|
fn modulo2() -> TestResult {
|
|
run_test("5.25 mod 2", "1.25")
|
|
}
|
|
|
|
#[test]
|
|
fn and() -> TestResult {
|
|
run_test("true && false", "false")
|
|
}
|
|
|
|
#[test]
|
|
fn or() -> TestResult {
|
|
run_test("true || false", "true")
|
|
}
|
|
|
|
#[test]
|
|
fn pow() -> TestResult {
|
|
run_test("3 ** 3", "27")
|
|
}
|
|
|
|
#[test]
|
|
fn contains() -> TestResult {
|
|
run_test("'testme' =~ 'test'", "true")
|
|
}
|
|
|
|
#[test]
|
|
fn not_contains() -> TestResult {
|
|
run_test("'testme' !~ 'test'", "false")
|
|
}
|
|
|
|
#[test]
|
|
fn floating_add() -> TestResult {
|
|
run_test("10.1 + 0.8", "10.9")
|
|
}
|
|
|
|
#[test]
|
|
fn precedence_of_or_groups() -> TestResult {
|
|
run_test(r#"4 mod 3 == 0 || 5 mod 5 == 0"#, "true")
|
|
}
|