Anton Shestakov <av6@dwimlabs.net>, Thu, 23 Jun 2016 14:38:55 +0800
checker: make run_ignore_1() a bit more flexible by adding codes argument
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 assert 'online linter' in response.body response = self.fetch('/nobodyhere') assert response.code == 404 assert 'online linter' in response.body