kopia lustrzana https://github.com/snarfed/bridgy-fed
24 wiersze
646 B
Python
24 wiersze
646 B
Python
|
"""Common test utility code.
|
||
|
"""
|
||
|
import unittest
|
||
|
|
||
|
from google.appengine.datastore import datastore_stub_util
|
||
|
from google.appengine.ext import testbed
|
||
|
|
||
|
|
||
|
class TestCase(unittest.TestCase):
|
||
|
|
||
|
maxDiff = None
|
||
|
|
||
|
def setUp(self):
|
||
|
super(TestCase, self).setUp()
|
||
|
self.testbed = testbed.Testbed()
|
||
|
self.testbed.activate()
|
||
|
hrd_policy = datastore_stub_util.PseudoRandomHRConsistencyPolicy(probability=.5)
|
||
|
self.testbed.init_datastore_v3_stub(consistency_policy=hrd_policy)
|
||
|
self.testbed.init_memcache_stub()
|
||
|
|
||
|
def tearDown(self):
|
||
|
self.testbed.deactivate()
|
||
|
super(TestCase, self).tearDown()
|