13 lines
287 B
Rust
Raw Normal View History

2025-06-27 02:33:44 +01:00
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())
})
}