2015-11-16 05:25:01 +00:00
|
|
|
use common::util::*;
|
|
|
|
|
|
|
|
static UTIL_NAME: &'static str = "dirname";
|
2016-07-29 21:26:32 +00:00
|
|
|
fn new_ucmd() -> UCommand {
|
|
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_with_trailing_slashes() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().arg("/root/alpha/beta/gamma/delta/epsilon/omega//")
|
|
|
|
.run().stdout_is("/root/alpha/beta/gamma/delta/epsilon");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_without_trailing_slashes() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().arg("/root/alpha/beta/gamma/delta/epsilon/omega")
|
|
|
|
.run().stdout_is("/root/alpha/beta/gamma/delta/epsilon");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
2015-12-21 10:17:37 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_root() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().arg("/").run().stdout_is("/");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pwd() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().arg(".").run().stdout_is(".");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
2016-08-13 21:59:21 +00:00
|
|
|
new_ucmd().arg("").run().stdout_is(".");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|