every good setup deserves a teardown

This commit is contained in:
Jeff Balogh 2010-11-22 18:26:43 -08:00
Родитель 6a8fc077f1
Коммит 502a84634e
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -33,7 +33,15 @@ if not connections: # don't set this repeatedly
def mock_redis():
connections['master'] = MockRedis()
ret = dict(connections)
for key in connections:
connections[key] = MockRedis()
return ret
def reset_redis(cxn):
for key, value in cxn.items():
connections[key] = value
class MockRedis(object):