aboutsummaryrefslogtreecommitdiff
path: root/tests/test_cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cache.py')
-rw-r--r--tests/test_cache.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_cache.py b/tests/test_cache.py
new file mode 100644
index 0000000..ef87877
--- /dev/null
+++ b/tests/test_cache.py
@@ -0,0 +1,10 @@
+import unittest
+
+import cachetools
+
+from . import CacheTestMixin
+
+
+class CacheTest(unittest.TestCase, CacheTestMixin):
+
+ Cache = cachetools.Cache