diff options
| author | Jordan Cook <jordan.cook@pioneer.com> | 2021-04-22 17:16:42 -0500 |
|---|---|---|
| committer | Jordan Cook <jordan.cook@pioneer.com> | 2021-04-22 20:55:23 -0500 |
| commit | 6e1679f7fb53a7edd2133f3a5ab2d8ca40ddccdb (patch) | |
| tree | 32f3626643cc6b1e5102a6e627e8142d5dfd912a /tests/integration/test_sqlite.py | |
| parent | f2bf9bbfd8d711e9dfc8ccce83f439d765d484cb (diff) | |
| download | requests-cache-6e1679f7fb53a7edd2133f3a5ab2d8ca40ddccdb.tar.gz | |
Combine test_cache.py with BaseCacheTest to run these tests for all backends
Diffstat (limited to 'tests/integration/test_sqlite.py')
| -rw-r--r-- | tests/integration/test_sqlite.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/integration/test_sqlite.py b/tests/integration/test_sqlite.py index 63c67ec..fd463ac 100644 --- a/tests/integration/test_sqlite.py +++ b/tests/integration/test_sqlite.py @@ -3,7 +3,8 @@ from threading import Thread from unittest.mock import patch from requests_cache.backends.sqlite import DbCache, DbDict, DbPickleDict -from tests.integration.test_backends import CACHE_NAME, BaseCacheTest, BaseStorageTest +from tests.integration.base_cache_test import BaseCacheTest +from tests.integration.base_storage_test import CACHE_NAME, BaseStorageTest class SQLiteTestCase(BaseStorageTest): |
