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

Continue with output after "is directory"-error

This commit is contained in:
sharkdp
2018-10-11 21:54:19 +02:00
parent eee7e5a575
commit 278bde5cee
2 changed files with 33 additions and 13 deletions

View File

@@ -102,3 +102,13 @@ fn fail_non_existing() {
fn fail_directory() {
bat().arg("sub_directory").assert().failure();
}
#[test]
fn do_not_exit_directory() {
bat()
.arg("sub_directory")
.arg("test.txt")
.assert()
.stdout("hello world\n")
.failure();
}