clean up white space issues

This commit is contained in:
Jonathan Wren 2020-05-06 14:15:43 -07:00
parent 4e09c75ff7
commit e22b758e41

View file

@ -76,30 +76,30 @@ Feature: Zapped bugs should stay dead.
Then the output should not contain "But I'm better." Then the output should not contain "But I'm better."
Scenario: Create entry using day of the week as entry date. Scenario: Create entry using day of the week as entry date.
Given we use the config "basic.yaml" Given we use the config "basic.yaml"
When we run "jrnl monday: This is an entry on a Monday." When we run "jrnl monday: This is an entry on a Monday."
Then we should see the message "Entry added" Then we should see the message "Entry added"
When we run "jrnl -1" When we run "jrnl -1"
Then the output should contain "monday at 9am" in the local time Then the output should contain "monday at 9am" in the local time
Then the output should contain "This is an entry on a Monday." Then the output should contain "This is an entry on a Monday."
Scenario: Create entry using day of the week abbreviations as entry date. Scenario: Create entry using day of the week abbreviations as entry date.
Given we use the config "basic.yaml" Given we use the config "basic.yaml"
When we run "jrnl fri: This is an entry on a Friday." When we run "jrnl fri: This is an entry on a Friday."
Then we should see the message "Entry added" Then we should see the message "Entry added"
When we run "jrnl -1" When we run "jrnl -1"
Then the output should contain "friday at 9am" in the local time Then the output should contain "friday at 9am" in the local time
Scenario: Displaying entries using -on today should display entries created today. Scenario: Displaying entries using -on today should display entries created today.
Given we use the config "basic.yaml" Given we use the config "basic.yaml"
When we run "jrnl today: Adding an entry right now." When we run "jrnl today: Adding an entry right now."
Then we should see the message "Entry added" Then we should see the message "Entry added"
When we run "jrnl -on today" When we run "jrnl -on today"
Then the output should contain "Adding an entry right now." Then the output should contain "Adding an entry right now."
Scenario: Displaying entries using -from day should display correct entries Scenario: Displaying entries using -from day should display correct entries
Given we use the config "basic.yaml" Given we use the config "basic.yaml"
When we run "jrnl yesterday: This thing happened yesterday" When we run "jrnl yesterday: This thing happened yesterday"
Then we should see the message "Entry added" Then we should see the message "Entry added"
When we run "jrnl today at 11:59pm: Adding an entry right now." When we run "jrnl today at 11:59pm: Adding an entry right now."
Then we should see the message "Entry added" Then we should see the message "Entry added"
@ -112,7 +112,7 @@ Feature: Zapped bugs should stay dead.
Scenario: Displaying entries using -from and -to day should display correct entries Scenario: Displaying entries using -from and -to day should display correct entries
Given we use the config "basic.yaml" Given we use the config "basic.yaml"
When we run "jrnl yesterday: This thing happened yesterday" When we run "jrnl yesterday: This thing happened yesterday"
Then we should see the message "Entry added" Then we should see the message "Entry added"
When we run "jrnl today at 11:59pm: Adding an entry right now." When we run "jrnl today at 11:59pm: Adding an entry right now."
Then we should see the message "Entry added" Then we should see the message "Entry added"