summaryrefslogtreecommitdiffstats
path: root/flatpages/tests.py
diff options
context:
space:
mode:
authorMartin Green <martin.speleo@gmail.com>2011-06-02 19:16:16 +0100
committerMartin Green <martin.speleo@gmail.com>2011-06-02 19:16:16 +0100
commitf318105a9bed2792fa3cab017bb6a2d5c8204284 (patch)
tree96c76d9914745758b782ac7619edb96230a7165f /flatpages/tests.py
parent12df0d417a7350c5e41bc606c90ca516db0178dd (diff)
downloadtroggle-f318105a9bed2792fa3cab017bb6a2d5c8204284.tar.gz
troggle-f318105a9bed2792fa3cab017bb6a2d5c8204284.tar.bz2
troggle-f318105a9bed2792fa3cab017bb6a2d5c8204284.zip
Added editing of flat pages. Added slugfields to models to refer to them.
Diffstat (limited to 'flatpages/tests.py')
-rw-r--r--flatpages/tests.py23
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
+"""}
+