2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_with_trailing_slashes() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.arg("/root/alpha/beta/gamma/delta/epsilon/omega//")
|
|
|
|
.run()
|
|
|
|
.stdout_is("/root/alpha/beta/gamma/delta/epsilon\n");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_without_trailing_slashes() {
|
2020-04-13 18:36:03 +00:00
|
|
|
new_ucmd!()
|
|
|
|
.arg("/root/alpha/beta/gamma/delta/epsilon/omega")
|
|
|
|
.run()
|
|
|
|
.stdout_is("/root/alpha/beta/gamma/delta/epsilon\n");
|
2015-11-16 05:25:01 +00:00
|
|
|
}
|
2015-12-21 10:17:37 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_root() {
|
2019-02-07 20:54:48 +00:00
|
|
|
new_ucmd!().arg("/").run().stdout_is("/\n");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pwd() {
|
2019-02-07 20:54:48 +00:00
|
|
|
new_ucmd!().arg(".").run().stdout_is(".\n");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
2019-02-07 20:54:48 +00:00
|
|
|
new_ucmd!().arg("").run().stdout_is(".\n");
|
2015-12-21 10:17:37 +00:00
|
|
|
}
|