예제 #1
0
 def wrapper(*args, **kwargs):
     _configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'simple'
     cache = set_cache()
     func(cache, *args, **kwargs)
     ctx.cfg['caching.system'] = _configured_cache
     cache = set_cache()
예제 #2
0
 def wrapper(*args, **kwargs):
     _configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'simple'
     cache = set_cache()
     func(cache, *args, **kwargs)
     ctx.cfg['caching.system'] = _configured_cache
     cache = set_cache()
예제 #3
0
 def tearDown(self):
     ctx.cfg['caching.system'] = self._configured_cache
     self.cache = set_cache()
예제 #4
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'simple'
     self.cache = set_cache()
예제 #5
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'database'
     self.cache = set_cache()
     self.cache.clear()
예제 #6
0
 def tearDown(self):
     ctx.cfg['caching.system'] = self._configured_cache
     Storage.query.delete()
     self.cache = set_cache()
     self.storage = CachedStorage(self.cache)
예제 #7
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'simple'
     self.cache = set_cache()
     self.storage = CachedStorage(self.cache)
예제 #8
0
 def tearDown(self):
     ctx.cfg['caching.system'] = self._configured_cache
     Storage.query.delete()
     self.cache = set_cache()
     self.storage = CachedStorage(self.cache)
예제 #9
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'simple'
     self.cache = set_cache()
     self.storage = CachedStorage(self.cache)
예제 #10
0
 def tearDown(self):
     ctx.cfg['caching.system'] = self._configured_cache
     self.cache = set_cache()
예제 #11
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'simple'
     self.cache = set_cache()
예제 #12
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'database'
     self.cache = set_cache()
     self.cache.clear()