mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 02:08:09 +00:00
13 lines
263 B
Rust
13 lines
263 B
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_default() {
|
|
let (at, mut ucmd) = at_and_ucmd!();
|
|
ucmd.run().stdout_is(at.root_dir_resolved() + "\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_failed() {
|
|
let (_at, mut ucmd) = at_and_ucmd!();
|
|
ucmd.arg("willfail").fails();
|
|
}
|