whee

Unified interface to key value with locking and transactions.
Info | Log | Files | Refs | README | LICENSE

test_couchdb.py (347B)


      1 import logging
      2 import unittest
      3 
      4 from whee.couchdb import CouchDBStore
      5 
      6 logging.basicConfig(level=logging.DEBUG)
      7 logg = logging.getLogger()
      8 
      9 class TestCouchDB(unittest.TestCase):
     10 
     11     def setUp(self):
     12         self.store = CouchDBStore('test', 'ya0JK6)hp')
     13 
     14 
     15     def test_get_put(self):
     16         pass
     17 
     18 
     19 if __name__ == '__main__':
     20     unittest.main()