coreutils/tests/test_pwd.rs
2019-02-08 07:54:48 +11:00

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");
}