coreutils/tests/test_pwd.rs

9 lines
151 B
Rust
Raw Normal View History

use common::util::*;
#[test]
fn test_default() {
let (at, mut ucmd) = at_and_ucmd!();
ucmd.run().stdout_is(at.root_dir_resolved() + "\n");
}