11 lines
149 B
Python
11 lines
149 B
Python
|
|
import unittest
|
||
|
|
|
||
|
|
import cachetools
|
||
|
|
|
||
|
|
from . import CacheTestMixin
|
||
|
|
|
||
|
|
|
||
|
|
class CacheTest(unittest.TestCase, CacheTestMixin):
|
||
|
|
|
||
|
|
Cache = cachetools.Cache
|