mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 08:23:24 +01:00
13 lines
287 B
Rust
13 lines
287 B
Rust
|
use nu_test_support::nu;
|
||
|
use nu_test_support::playground::Playground;
|
||
|
#[test]
|
||
|
fn test_uname_all() {
|
||
|
Playground::setup("uname_test_1", |dirs, _| {
|
||
|
let actual = nu!(
|
||
|
cwd: dirs.test(),
|
||
|
"uname"
|
||
|
);
|
||
|
assert!(actual.status.success())
|
||
|
})
|
||
|
}
|