summaryrefslogtreecommitdiff
path: root/ishtar/furnitures/tests.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-08 18:37:16 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-24 17:39:02 +0100
commitf86a4c422efbd8846fdf3823e10918298927d613 (patch)
tree9aac150948814dcc0756bb750d67056952e8e70f /ishtar/furnitures/tests.py
parent3f43241c3bc39e2d9f1244c86ce4f20c4e32cdf9 (diff)
downloadIshtar-f86a4c422efbd8846fdf3823e10918298927d613.tar.bz2
Ishtar-f86a4c422efbd8846fdf3823e10918298927d613.zip
Change application name materials => furnitures
Diffstat (limited to 'ishtar/furnitures/tests.py')
-rw-r--r--ishtar/furnitures/tests.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/ishtar/furnitures/tests.py b/ishtar/furnitures/tests.py
new file mode 100644
index 000000000..2247054b3
--- /dev/null
+++ b/ishtar/furnitures/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
+"""}
+