1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-21 19:17:48 +01:00
nushell/crates/nu-command/tests/commands/inspect.rs

8 lines
169 B
Rust
Raw Normal View History

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"));
}