def setUp(self):
     """Empty docstring"""
     self.__database = create_sqlite_use_only_for_tests().new_store()
     self.__database.install('deploy/sqlite/latest.sql')
     self.__storage = mocks.storage.StringIOStorage()
     self.__user1 = User(u'Nathan', u'Samson', u'*****@*****.**')
     self.__user2 = User(u'Other', u'User', u'*****@*****.**')
示例#2
0
 def setUp(self):
     """Setup function"""
     self.__database = create_sqlite_use_only_for_tests()
     self.store = self.__database.new_store()
     self.store.install('deploy/sqlite/latest.sql')
示例#3
0
 def setUp(self):
     """Empty docstring"""
     self.__database = create_sqlite_use_only_for_tests().new_store()
     self.__database.install('deploy/sqlite/latest.sql')
 def setUp(self):
     """Empty docstring"""
     self.__database = create_sqlite_use_only_for_tests().new_store()
     self.__database.install('deploy/sqlite/latest.sql')
     self.__user = User(u'Nathan', u'Samson', u'*****@*****.**')