From 278d84140864c65f91ec7a3d19741bcc94987b45 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sun, 4 Nov 2018 10:56:31 +0100 Subject: [PATCH] Move '--paging' arg to config file. --- tests/examples/bat.conf | 6 +++++- tests/integration_tests.rs | 5 ++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/examples/bat.conf b/tests/examples/bat.conf index 96a04342..614ab40d 100644 --- a/tests/examples/bat.conf +++ b/tests/examples/bat.conf @@ -1 +1,5 @@ ---paging=always \ No newline at end of file +# Make sure that the pager gets executed +--paging=always + +# Output a dummy message for the integration test. +--pager="echo dummy-pager-from-config" diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 28761188..c30c2cac 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -343,12 +343,11 @@ fn config_location_test() { } #[test] -fn config_read_paging_test() { +fn config_read_arguments_from_file() { bat_with_config() .env("BAT_CONFIG_PATH", "bat.conf") - .env("BAT_PAGER", "echo testing-config-file") .arg("test.txt") .assert() .success() - .stdout("testing-config-file\n"); + .stdout("dummy-pager-from-config\n"); }