2015-11-16 05:25:01 +00:00
|
|
|
use common::util::*;
|
|
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_with_trailing_slashes() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!().arg("/root/alpha/beta/gamma/delta/epsilon/omega//")
|
2016-08-13 21:59:21 +00:00
|
|
|
.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-23 11:52:43 +00:00
|
|
|
new_ucmd!().arg("/root/alpha/beta/gamma/delta/epsilon/omega")
|
2016-08-13 21:59:21 +00:00
|
|
|
.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-23 11:52:43 +00:00
|
|
|
new_ucmd!().arg("/").run().stdout_is("/");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pwd() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!().arg(".").run().stdout_is(".");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
2016-08-23 11:52:43 +00:00
|
|
|
new_ucmd!().arg("").run().stdout_is(".");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|