diff options
author | Johan Lundberg <lundberg@nordu.net> | 2011-01-26 09:27:29 +0100 |
---|---|---|
committer | Johan Lundberg <lundberg@nordu.net> | 2011-01-26 09:27:29 +0100 |
commit | 0d9f0270b46146b9701a21dfc344ff91d0dba603 (patch) | |
tree | d6b6fc790ba53fc73fb1131e9dc5bcbe40387b84 /tests.py |
Initial commit.
Diffstat (limited to 'tests.py')
-rw-r--r-- | tests.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests.py b/tests.py new file mode 100644 index 0000000..2247054 --- /dev/null +++ b/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + |