mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
d9d956e54f
* Fix issue in external subexpression paths * new clippy dropped * clippy
42 lines
1.2 KiB
Rust
42 lines
1.2 KiB
Rust
use nu_test_support::pipeline as input;
|
|
use nu_test_support::playground::{says, Playground};
|
|
|
|
use hamcrest2::assert_that;
|
|
use hamcrest2::prelude::*;
|
|
|
|
#[test]
|
|
fn checks_any_row_is_true() {
|
|
Playground::setup("any_test_1", |_, nu| {
|
|
assert_that!(
|
|
nu.pipeline(&input(
|
|
r#"
|
|
echo [ "Ecuador", "USA", "New Zealand" ]
|
|
| any? $it == "New Zealand"
|
|
"#
|
|
)),
|
|
says().stdout("true")
|
|
);
|
|
})
|
|
}
|
|
|
|
#[test]
|
|
fn checks_any_column_of_a_table_is_true() {
|
|
Playground::setup("any_test_1", |_, nu| {
|
|
assert_that!(
|
|
nu.pipeline(&input(
|
|
r#"
|
|
echo [
|
|
[ first_name, last_name, rusty_at, likes ];
|
|
[ Andrés, Robalino, 10/11/2013, 1 ]
|
|
[ Jonathan, Turner, 10/12/2013, 1 ]
|
|
[ Darren, Schroeder, 10/11/2013, 1 ]
|
|
[ Yehuda, Katz, 10/11/2013, 1 ]
|
|
]
|
|
| any? rusty_at == 10/12/2013
|
|
"#
|
|
)),
|
|
says().stdout("true")
|
|
);
|
|
})
|
|
}
|