mirror of
https://github.com/sharkdp/bat
synced 2024-11-23 04:13:11 +00:00
cargo fmt
This commit is contained in:
parent
9be2a36a01
commit
e9a6aaa30f
1 changed files with 5 additions and 3 deletions
|
@ -8,9 +8,11 @@ use utils::command::bat_with_config;
|
||||||
#[test]
|
#[test]
|
||||||
#[ignore]
|
#[ignore]
|
||||||
fn use_systemwide_config() {
|
fn use_systemwide_config() {
|
||||||
bat_with_config().arg("test.txt").assert().success().stdout(
|
bat_with_config()
|
||||||
predicate::eq("dummy-pager-from-system-config\n").normalize(),
|
.arg("test.txt")
|
||||||
);
|
.assert()
|
||||||
|
.success()
|
||||||
|
.stdout(predicate::eq("dummy-pager-from-system-config\n").normalize());
|
||||||
}
|
}
|
||||||
|
|
||||||
// This test is ignored, as it needs a special system wide config put into place
|
// This test is ignored, as it needs a special system wide config put into place
|
||||||
|
|
Loading…
Reference in a new issue