2020-08-27 07:44:18 +02:00
|
|
|
use nu_test_support::{nu, pipeline};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn into_int_filesize() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
2021-05-12 03:01:48 +02:00
|
|
|
echo 1kb | into int | each { $it / 1000 }
|
2021-02-10 03:31:12 +01:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
|
|
|
assert!(actual.out.contains('1'));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn into_int_filesize2() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
2021-05-12 03:01:48 +02:00
|
|
|
echo 1kib | into int | each { $it / 1024 }
|
2020-08-27 07:44:18 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-10-08 23:47:51 +02:00
|
|
|
assert!(actual.out.contains('1'));
|
2020-08-27 07:44:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn into_int_int() {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: ".", pipeline(
|
|
|
|
r#"
|
2021-05-12 03:01:48 +02:00
|
|
|
echo 1024 | into int | each { $it / 1024 }
|
2020-08-27 07:44:18 +02:00
|
|
|
"#
|
|
|
|
));
|
|
|
|
|
2020-10-08 23:47:51 +02:00
|
|
|
assert!(actual.out.contains('1'));
|
2020-08-27 07:44:18 +02:00
|
|
|
}
|