예제 #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')