mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 13:08:31 +02:00
add linewrap override scenario
This commit is contained in:
parent
2fc19c41b9
commit
12d2f48f97
1 changed files with 27 additions and 2 deletions
|
@ -2,5 +2,30 @@ Feature: Implementing Runtime Overrides for Select Configuration Keys
|
||||||
|
|
||||||
Scenario: Override configured editor with built-in input === editor:''
|
Scenario: Override configured editor with built-in input === editor:''
|
||||||
Given we use the config "editor-args.yaml"
|
Given we use the config "editor-args.yaml"
|
||||||
When we run "jrnl --override '{\"editor\": \"\"}'"
|
When we run "jrnl --override '{\"editor\": \"\""}'"
|
||||||
Then the editor "" should have been called
|
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\"}'"
|
||||||
|
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"
|
||||||
|
Then the output should be
|
||||||
|
"""
|
||||||
|
┎─────╮2013-06-09 15:39
|
||||||
|
┃ My ╘═══════════════╕
|
||||||
|
┃ fir st ent ry. │
|
||||||
|
┠╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
|
||||||
|
┃ Everything is │
|
||||||
|
┃ alright │
|
||||||
|
┖─────────────────────┘
|
||||||
|
┎─────╮2013-06-10 15:40
|
||||||
|
┃ Lif ╘═══════════════╕
|
||||||
|
┃ e is goo d. │
|
||||||
|
┠╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┤
|
||||||
|
┃ But I'm better. │
|
||||||
|
┖─────────────────────┘
|
||||||
|
"""
|
Loading…
Add table
Reference in a new issue