forked from extern/nushell
a0db4ce747
* adds `capture-errors` flag for `do` * adds `get-type` core command to get type * fmt * add tests in example * fmt * fix tests * manually revert previous changes related to `get-type` * adds method to check for error name using `into string` * fix clippy
14 lines
231 B
Rust
14 lines
231 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn capture_errors_works() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
do -c {$env.use} | describe
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "error");
|
|
}
|