mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-15 09:41:07 +00:00
8 lines
151 B
Rust
8 lines
151 B
Rust
use common::util::*;
|
|
|
|
|
|
#[test]
|
|
fn test_default() {
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
ucmd.run().stdout_is(at.root_dir_resolved() + "\n");
|
|
}
|