mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
* Implement --change-time flag * Remove todo from --change-time bdd folder journal tests * Add warning when --change-time used with no matching entries * Add a test to make sure running --change-time with nothing prints a warning and doesn't change anything * Add prompt for --change-time * Don't prompt for --change-time when used with --edit and only one entry * When using --edit and --change-time, change the time before editing * Add test for --change-time used with --edit * Modify failing --change-time test to conform to text in develop branch
20 lines
726 B
Python
20 lines
726 B
Python
from pytest_bdd import scenarios
|
|
|
|
scenarios("features/build.feature")
|
|
scenarios("features/config_file.feature")
|
|
scenarios("features/core.feature")
|
|
scenarios("features/datetime.feature")
|
|
scenarios("features/delete.feature")
|
|
scenarios("features/change_time.feature")
|
|
scenarios("features/encrypt.feature")
|
|
scenarios("features/file_storage.feature")
|
|
scenarios("features/format.feature")
|
|
scenarios("features/import.feature")
|
|
scenarios("features/multiple_journals.feature")
|
|
scenarios("features/override.feature")
|
|
scenarios("features/password.feature")
|
|
scenarios("features/search.feature")
|
|
scenarios("features/star.feature")
|
|
scenarios("features/tag.feature")
|
|
scenarios("features/upgrade.feature")
|
|
scenarios("features/write.feature")
|