mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-03-22 00:00:24 +00:00
11 lines
222 B
Python
11 lines
222 B
Python
|
|
# -*- coding:utf-8 -*-
|
||
|
|
from __future__ import absolute_import, unicode_literals
|
||
|
|
|
||
|
|
|
||
|
|
def test_default_cache():
|
||
|
|
from django_select2.cache import cache
|
||
|
|
|
||
|
|
cache.set('key', 'value')
|
||
|
|
|
||
|
|
assert cache.get('key') == 'value'
|