jrnl/tests/step_defs/test_features.py
Jonathan Wren fe018ee241 Implement test keyrings and add password tests
- Implement TestKeyring
- Implement NoKeyring
- Implement FailedKeyring
- Copy in `read_value_from_string` function from old tests (will
  probably rewrite this later)
- Add fixtures for keyrings
- Implement "we have a keyring" step
- Implement step to check specific config values for tests

Co-authored-by: Micah Jerome Ellison <micah.jerome.ellison@gmail.com>
2021-07-03 15:49:18 -07:00

17 lines
668 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/password.feature")
# scenarios("../features/search.feature")
# scenarios("../features/star.feature")
# scenarios("../features/tag.feature")
# scenarios("../features/upgrade.feature")
# scenarios("../features/write.feature")