mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
* add newer tests to pytest (from behave) * remove 'lib' from gitignore (since we're using it) * fix capitalization in some steps * add 'the editor should not have been called' step * comment out config override step in pytest-bdd since it's not implemented yet * remove test that didn't really test anything * implement some missing steps in pytest-bdd * change comment to match other tests
18 lines
642 B
Python
18 lines
642 B
Python
from pytest_bdd import scenarios
|
|
|
|
scenarios("features/build.feature")
|
|
scenarios("features/core.feature")
|
|
scenarios("features/datetime.feature")
|
|
scenarios("features/delete.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")
|