mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-04-05 06:30:58 +00:00
6 lines
140 B
Python
6 lines
140 B
Python
def test_default_cache():
|
|
from django_select2.cache import cache
|
|
|
|
cache.set('key', 'value')
|
|
|
|
assert cache.get('key') == 'value'
|