rename --override to --config-override

This commit is contained in:
Suhas 2021-01-23 21:30:33 -05:00
parent f978cee899
commit 1a8bcfca64
5 changed files with 8 additions and 8 deletions

View file

@ -2,17 +2,17 @@ Feature: Implementing Runtime Overrides for Select Configuration Keys
Scenario: Override configured editor with built-in input === editor:''
Given we use the config "editor-args.yaml"
When we run "jrnl --override '{\"editor\": \"\""}'"
When we run "jrnl --config-override '{\"editor\": \"\""}'"
Then the editor "" should have been called
Scenario: Override configured editor with 'nano'
Given we use the config "editor.yaml"
When we run "jrnl --override '{\"editor\": \"nano\"}'"
When we run "jrnl --config-override '{\"editor\": \"nano\"}'"
Then the editor "nano" should have been called
Scenario: Override configured linewrap with a value of 23
Given we use the config "editor.yaml"
When we run "jrnl -2 --override '{"linewrap": 23}' --format fancy"
When we run "jrnl -2 --config-override '{"linewrap": 23}' --format fancy"
Then the output should be
"""
2013-06-09 15:39

View file

@ -232,7 +232,7 @@ def editor_override(context, editor):
patch("jrnl.install.get_config_path", side_effect=lambda: context.config_path) \
:
try :
cli(['--override','{"editor": "%s"}'%editor])
cli(['--config-override','{"editor": "%s"}'%editor])
context.exit_status = 0
context.editor = mock_editor
assert mock_editor.assert_called_once_with(editor, context.tmpfile)