mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
tests: Fix test broken in prev commit
This commit is contained in:
+1
-3
@@ -52,9 +52,7 @@ impl Config {
|
|||||||
Some(true) == self.ignore_hidden || options.get_flag("ignore_hidden")
|
Some(true) == self.ignore_hidden || options.get_flag("ignore_hidden")
|
||||||
}
|
}
|
||||||
pub fn get_full_paths(&self, options: &ArgMatches) -> bool {
|
pub fn get_full_paths(&self, options: &ArgMatches) -> bool {
|
||||||
Some(true) == self.display_full_paths
|
Some(true) == self.display_full_paths || options.get_flag("display_full_paths")
|
||||||
|| options.get_flag("display_full_paths")
|
|
||||||
// || self.get_only_file(options)
|
|
||||||
}
|
}
|
||||||
pub fn get_reverse(&self, options: &ArgMatches) -> bool {
|
pub fn get_reverse(&self, options: &ArgMatches) -> bool {
|
||||||
Some(true) == self.reverse || options.get_flag("reverse")
|
Some(true) == self.reverse || options.get_flag("reverse")
|
||||||
|
|||||||
+3
-3
@@ -139,9 +139,9 @@ pub fn test_show_files_by_type() {
|
|||||||
#[cfg(target_family = "unix")]
|
#[cfg(target_family = "unix")]
|
||||||
pub fn test_show_files_only() {
|
pub fn test_show_files_only() {
|
||||||
let output = build_command(vec!["-c", "-F", "tests/test_dir"]);
|
let output = build_command(vec!["-c", "-F", "tests/test_dir"]);
|
||||||
assert!(output.contains("tests/test_dir/many/a_file"));
|
assert!(output.contains("a_file"));
|
||||||
assert!(output.contains("tests/test_dir/many/hello_file"));
|
assert!(output.contains("hello_file"));
|
||||||
assert!(!output.contains("tests/test_dir/many "));
|
assert!(!output.contains("many"));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|||||||
Reference in New Issue
Block a user