mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 00:53:25 +00:00
7 lines
150 B
Rust
7 lines
150 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");
|
|
}
|