2014-02-27 03:35:50 +00:00
|
|
|
use std::io::process::Process;
|
|
|
|
use std::str;
|
2014-02-05 19:46:28 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_count_up() {
|
2014-02-27 03:35:50 +00:00
|
|
|
let p = Process::output("build/seq", [~"10"]).unwrap();
|
2014-04-26 05:03:08 +00:00
|
|
|
let out = str::from_utf8(p.output.as_slice().to_owned()).unwrap().into_owned();
|
2014-02-05 19:46:28 +00:00
|
|
|
assert_eq!(out, ~"1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_count_down() {
|
2014-02-27 03:35:50 +00:00
|
|
|
let p = Process::output("build/seq", [~"--", ~"5", ~"-1", ~"1"]).unwrap();
|
2014-04-26 05:03:08 +00:00
|
|
|
let out = str::from_utf8(p.output.as_slice().to_owned()).unwrap().into_owned();
|
2014-02-05 19:46:28 +00:00
|
|
|
assert_eq!(out, ~"5\n4\n3\n2\n1\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_separator_and_terminator() {
|
2014-02-27 03:35:50 +00:00
|
|
|
let p = Process::output("build/seq", [~"-s", ~",", ~"-t", ~"!", ~"2", ~"6"]).unwrap();
|
2014-04-26 05:03:08 +00:00
|
|
|
let out = str::from_utf8(p.output.as_slice().to_owned()).unwrap().into_owned();
|
2014-02-05 19:46:28 +00:00
|
|
|
assert_eq!(out, ~"2,3,4,5,6!");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_equalize_widths() {
|
2014-02-27 03:35:50 +00:00
|
|
|
let p = Process::output("build/seq", [~"-w", ~"5", ~"10"]).unwrap();
|
2014-04-26 05:03:08 +00:00
|
|
|
let out = str::from_utf8(p.output.as_slice().to_owned()).unwrap().into_owned();
|
2014-02-05 19:46:28 +00:00
|
|
|
assert_eq!(out, ~"05\n06\n07\n08\n09\n10\n");
|
|
|
|
}
|