From 7a54e6f45808639922c1454b02d5985388d7f17d Mon Sep 17 00:00:00 2001 From: Suhas Date: Mon, 25 Jan 2021 08:53:35 -0500 Subject: [PATCH] add multiple override scenario spec --- features/overrides.feature | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/features/overrides.feature b/features/overrides.feature index 51ce11d2..0aa84d8c 100644 --- a/features/overrides.feature +++ b/features/overrides.feature @@ -36,3 +36,10 @@ Scenario: Override color selections with runtime overrides Given we use the config "tiny.yaml" When we run jrnl with -1 --config-override '{"colors.body": "blue"}' Then the runtime config should have colors.body set to blue + +@skip_win +Scenario: Apply multiple config overrides +Given we use the config "tiny.yaml" +When we run jrnl with -1 --config-override '{"colors.body": "green", "editor": "nano"}' +Then the runtime config should have colors.body set to green +And the runtime config should have editor set to nano