summaryrefslogtreecommitdiff
path: root/tests/integration/test_mongodb.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-04-22 17:16:42 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-04-22 20:55:23 -0500
commit6e1679f7fb53a7edd2133f3a5ab2d8ca40ddccdb (patch)
tree32f3626643cc6b1e5102a6e627e8142d5dfd912a /tests/integration/test_mongodb.py
parentf2bf9bbfd8d711e9dfc8ccce83f439d765d484cb (diff)
downloadrequests-cache-6e1679f7fb53a7edd2133f3a5ab2d8ca40ddccdb.tar.gz
Combine test_cache.py with BaseCacheTest to run these tests for all backends
Diffstat (limited to 'tests/integration/test_mongodb.py')
-rw-r--r--tests/integration/test_mongodb.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/integration/test_mongodb.py b/tests/integration/test_mongodb.py
index a186ee7..8e9cafe 100644
--- a/tests/integration/test_mongodb.py
+++ b/tests/integration/test_mongodb.py
@@ -5,7 +5,8 @@ from pymongo import MongoClient
from requests_cache.backends import MongoCache, MongoDict, MongoPickleDict, get_valid_kwargs
from tests.conftest import fail_if_no_connection
-from tests.integration.test_backends import BaseCacheTest, BaseStorageTest
+from tests.integration.base_cache_test import BaseCacheTest
+from tests.integration.base_storage_test import BaseStorageTest
@pytest.fixture(scope='module', autouse=True)