mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
13 lines
264 B
Rust
13 lines
264 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("will-fail").fails();
|
|
}
|