We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d701178 commit 2fde371Copy full SHA for 2fde371
kalite/distributed/tests/__init__.py
@@ -1,3 +1,4 @@
1
from cli_tests import *
2
from url_tests import *
3
from browser_tests import *
4
+from about_tests import *
kalite/distributed/tests/about_tests.py
@@ -0,0 +1,13 @@
+from django.core.urlresolvers import reverse
+
+from kalite.testing.base import KALiteTestCase
5
+class AboutTestCase(KALiteTestCase):
6
7
+ def test_about(self):
8
+ response = self.client.get(reverse('about'))
9
+ self.assertEqual(response.status_code, 200)
10
11
+ def test_about_data(self):
12
+ response = self.client.get(reverse('about_data'))
13
+ self.assertIn('success', response.content)
0 commit comments