Mongo storage included to storages test

This commit is contained in:
Rishat Fayzullin 2024-03-05 12:15:21 +03:00
parent a585fb08de
commit 2790c77e59

View file

@ -11,7 +11,11 @@ def create_storage_key(bot: MockedBot):
@pytest.mark.parametrize(
"storage",
[pytest.lazy_fixture("redis_storage"), pytest.lazy_fixture("memory_storage")],
[
pytest.lazy_fixture("redis_storage"),
pytest.lazy_fixture("mongo_storage"),
pytest.lazy_fixture("memory_storage"),
],
)
class TestStorages:
async def test_set_state(self, bot: MockedBot, storage: BaseStorage, storage_key: StorageKey):