nushell/crates/nu-cli/tests/commands/into_int.rs
2020-10-09 10:47:51 +13:00

26 lines
419 B
Rust

use nu_test_support::{nu, pipeline};
#[test]
fn into_int_filesize() {
let actual = nu!(
cwd: ".", pipeline(
r#"
into-int 1kb | = $it / 1024
"#
));
assert!(actual.out.contains('1'));
}
#[test]
fn into_int_int() {
let actual = nu!(
cwd: ".", pipeline(
r#"
into-int 1024 | = $it / 1024
"#
));
assert!(actual.out.contains('1'));
}