コード例 #1
0
ファイル: test_RTDB.py プロジェクト: assad2012/tokyo-python
class RTDBTest(unittest.TestCase):

    def setUp(self):
        self.db = RTDB()
        self.db.open(HOST, PORT)

    def tearDown(self):
        self.db.clear()
        self.db.close()
        self.db = None
コード例 #2
0
ファイル: test_RTDB.py プロジェクト: assad2012/tokyo-python
 def setUp(self):
     self.db = RTDB()
     self.db.open(HOST, PORT)