diff options
Diffstat (limited to 'website')
-rw-r--r-- | website/tests.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/website/tests.py b/website/tests.py index 7ce503c..501deb7 100644 --- a/website/tests.py +++ b/website/tests.py @@ -1,3 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + from django.test import TestCase -# Create your tests here. + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) |