coreutils/test/test.rs
2015-05-07 18:12:32 -04:00

37 lines
1.1 KiB
Rust

/*
* This file is part of the uutils coreutils package.
*
* (c) mahkoh (ju.orth [at] gmail [dot] com)
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use std::process::Command;
static EXE: &'static str = "./test";
#[test]
fn test_op_prec_and_or_1() {
let status = Command::new(EXE).arg(" ").arg("-o").arg("").arg("-a").arg("").status();
assert_eq!(true, status.unwrap().success());
}
#[test]
fn test_op_prec_and_or_2() {
let status = Command::new(EXE).arg("")
.arg("-a")
.arg("")
.arg("-o")
.arg(" ")
.arg("-a")
.arg(" ")
.status();
assert_eq!(true, status.unwrap().success());
}
#[test]
fn test_or_as_filename() {
let status = Command::new(EXE).arg("x").arg("-a").arg("-z").arg("-o").status();
assert_eq!(status.unwrap().code(), Some(1));
}