mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 01:43:47 +01:00
8 lines
129 B
Rust
8 lines
129 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn runs_successfully() {
|
||
|
let actual = nu!("debug info");
|
||
|
assert_eq!(actual.err, "");
|
||
|
}
|