コード例 #1
0
ファイル: tests.py プロジェクト: pombredanne/AjguDB
class TestWiredTigerTupleSpace(TestLevelDBTupleSpace):

    def setUp(self):
        os.makedirs('/tmp/tuplespace')
        self.tuplespace = WiredTigerStorage('/tmp/tuplespace')

    def tearDown(self):
        self.tuplespace.close()
        rmtree('/tmp/tuplespace')
コード例 #2
0
ファイル: tests.py プロジェクト: pombredanne/AjguDB
 def setUp(self):
     os.makedirs('/tmp/tuplespace')
     self.tuplespace = WiredTigerStorage('/tmp/tuplespace')