Anton Shestakov <av6@dwimlabs.net>, Sat, 18 Jun 2016 22:45:43 +0800
tests: create the in-memory database once in setup_module()
Also mock the correct method, close() instead of disconnect().
tests/test_viewer.py
Permissions: -rw-r--r--
from tornado.testing import AsyncHTTPTestCase from candolint.models import database, Project, Change, Check from viewer import CandolintViewer database.init(':memory:') database.create_tables([Project, Change, Check], safe=True) database.connect = Mock() class ViewerTestCase(AsyncHTTPTestCase): response = self.fetch('/') assert response.code == 200 response = self.fetch('/nobodyhere') assert response.code == 404