mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-03-17 05:50:23 +00:00
7 lines
140 B
Python
7 lines
140 B
Python
|
|
def test_default_cache():
|
||
|
|
from django_select2.cache import cache
|
||
|
|
|
||
|
|
cache.set('key', 'value')
|
||
|
|
|
||
|
|
assert cache.get('key') == 'value'
|