mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
96e5fc05a3
Pick->Select rename. Integration tests changes.
50 lines
847 B
Rust
50 lines
847 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn calculates_two_plus_two() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
echo "2 + 2" | calc
|
|
"#
|
|
));
|
|
|
|
assert!(actual.out.contains("4.0"));
|
|
}
|
|
|
|
#[test]
|
|
fn calculates_two_to_the_power_six() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
echo "2 ^ 6" | calc
|
|
"#
|
|
));
|
|
|
|
assert!(actual.out.contains("64.0"));
|
|
}
|
|
|
|
#[test]
|
|
fn calculates_three_multiplied_by_five() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
echo "3 * 5" | calc
|
|
"#
|
|
));
|
|
|
|
assert!(actual.out.contains("15.0"));
|
|
}
|
|
|
|
#[test]
|
|
fn calculates_twenty_four_divided_by_two() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
echo "24 / 2" | calc
|
|
"#
|
|
));
|
|
|
|
assert!(actual.out.contains("12.0"));
|
|
}
|