diff options
author | Wookey <wookey@wookware.org> | 2011-07-10 23:30:36 +0100 |
---|---|---|
committer | Wookey <wookey@wookware.org> | 2011-07-10 23:30:36 +0100 |
commit | 28924db9f87af72343206383e9065841e3fd1c14 (patch) | |
tree | eace5c8be2836e67374c3ca28eaaed662ea52d01 /flatpages/tests.py | |
parent | 30829ff9c80783a33bf18483b70a987ac27bb09d (diff) | |
parent | 50545af223eaee708cc465363247201123707bd3 (diff) | |
download | troggle-28924db9f87af72343206383e9065841e3fd1c14.tar.gz troggle-28924db9f87af72343206383e9065841e3fd1c14.tar.bz2 troggle-28924db9f87af72343206383e9065841e3fd1c14.zip |
merge fix from martin's tip.
Diffstat (limited to 'flatpages/tests.py')
-rw-r--r-- | flatpages/tests.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/flatpages/tests.py b/flatpages/tests.py new file mode 100644 index 0000000..2247054 --- /dev/null +++ b/flatpages/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 +"""} + |