mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-07-05 07:56:14 +02:00
make format
This commit is contained in:
parent
7a54e6f458
commit
f1b260655d
3 changed files with 22 additions and 25 deletions
|
@ -219,17 +219,19 @@ def test_color_override():
|
|||
'--config-override \'{"colors.body": "blue"}\''
|
||||
) == expected_args(config_override={"colors.body": "blue"})
|
||||
|
||||
def test_multiple_overrides():
|
||||
|
||||
def test_multiple_overrides():
|
||||
assert cli_as_dict(
|
||||
'--config-override \'{"colors.title": "green", "editor":"", "journal.scratchpad": "/tmp/scratchpad"}\''
|
||||
) == expected_args(
|
||||
config_override={
|
||||
"colors.title": "green",
|
||||
"journal.scratchpad": "/tmp/scratchpad",
|
||||
"editor": ""
|
||||
"editor": "",
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
# @see https://github.com/jrnl-org/jrnl/issues/520
|
||||
@pytest.mark.parametrize(
|
||||
"cli",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue