mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-15 17:51:07 +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();
|
|
}
|