3
2
unittest). These will both pass when you run "manage.py test".
5
4
Replace these with more appropriate tests for your application.
8
8
from django.test import TestCase
10
11
class SimpleTest(TestCase):
11
13
def test_basic_addition(self):
13
15
Tests that 1 + 1 always equals 2.
15
17
self.failUnlessEqual(1 + 1, 2)
18
20
Another way to test that 1 + 1 is equal to 2.