(self, repository, monkeypatch)
| 196 | |
| 197 | @pytest.fixture |
| 198 | def key(self, repository, monkeypatch): |
| 199 | monkeypatch.setenv("BORG_PASSPHRASE", "test") |
| 200 | key = PlaintextKey.create(repository, TestKey.MockArgs()) |
| 201 | return key |
| 202 | |
| 203 | @pytest.fixture |
| 204 | def repo_objs(self, key): |