1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

Fix accidental printing of files named 'cache'

This also adds two regression tests, so this will hopefully not pop up
again.

closes #557
This commit is contained in:
sharkdp
2019-05-10 14:02:08 -05:00
committed by David Peter
parent 2b9d25df05
commit 72152296c7
4 changed files with 18 additions and 1 deletions

1
tests/examples/cache vendored Normal file
View File

@@ -0,0 +1 @@
test

View File

@@ -448,3 +448,18 @@ fn utf16() {
.success()
.stdout(std::str::from_utf8(b"\xEF\xBB\xBFhello world\n").unwrap());
}
#[test]
fn can_print_file_named_cache() {
bat()
.arg("cache")
.assert()
.success()
.stdout("test\n")
.stderr("");
}
#[test]
fn does_not_print_unwanted_file_named_cache() {
bat_with_config().arg("cach").assert().failure();
}