coreutils/tests/test_pwd.rs
2020-04-13 20:36:03 +02:00

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