mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 18:03:51 +01:00
8 lines
169 B
Rust
8 lines
169 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn inspect_with_empty_pipeline() {
|
||
|
let actual = nu!("inspect");
|
||
|
assert!(actual.err.contains("no input value was piped in"));
|
||
|
}
|