mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 17:58:06 +00:00
13 lines
243 B
Rust
13 lines
243 B
Rust
#[macro_use]
|
|
mod common;
|
|
|
|
use common::util::*;
|
|
|
|
static UTIL_NAME: &'static str = "true";
|
|
|
|
#[test]
|
|
fn test_exit_code() {
|
|
let (_, mut ucmd) = testing(UTIL_NAME);
|
|
let exit_status = ucmd.run().success;
|
|
assert_eq!(exit_status, true);
|
|
}
|