Beispiel #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()
Beispiel #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()
Beispiel #3
0
 def tearDown(self):
     ctx.cfg['caching.system'] = self._configured_cache
     self.cache = set_cache()
Beispiel #4
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'simple'
     self.cache = set_cache()
Beispiel #5
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'database'
     self.cache = set_cache()
     self.cache.clear()
Beispiel #6
0
 def tearDown(self):
     ctx.cfg['caching.system'] = self._configured_cache
     Storage.query.delete()
     self.cache = set_cache()
     self.storage = CachedStorage(self.cache)
Beispiel #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)
Beispiel #8
0
 def tearDown(self):
     ctx.cfg['caching.system'] = self._configured_cache
     Storage.query.delete()
     self.cache = set_cache()
     self.storage = CachedStorage(self.cache)
Beispiel #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)
Beispiel #10
0
 def tearDown(self):
     ctx.cfg['caching.system'] = self._configured_cache
     self.cache = set_cache()
Beispiel #11
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'simple'
     self.cache = set_cache()
Beispiel #12
0
 def setUp(self):
     self._configured_cache = ctx.cfg['caching.system']
     ctx.cfg['caching.system'] = 'database'
     self.cache = set_cache()
     self.cache.clear()