2
0
Fork 0
mirror of https://github.com/uutils/coreutils synced 2024-12-22 11:03:12 +00:00
coreutils/tests/test_ls.rs

16 lines
280 B
Rust
Raw Normal View History

use common::util::*;
static UTIL_NAME: &'static str = "ls";
fn new_ucmd() -> UCommand {
TestScenario::new(UTIL_NAME).ucmd()
}
#[test]
fn test_ls_ls() {
let result = new_ucmd().run();
let exit_success = result.success;
assert_eq!(exit_success, true);
}