summaryrefslogtreecommitdiff
path: root/ishtar/materials/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/materials/tests.py
parent3f43241c3bc39e2d9f1244c86ce4f20c4e32cdf9 (diff)
downloadIshtar-f86a4c422efbd8846fdf3823e10918298927d613.tar.bz2
Ishtar-f86a4c422efbd8846fdf3823e10918298927d613.zip
Change application name materials => furnitures
Diffstat (limited to 'ishtar/materials/tests.py')
-rw-r--r--ishtar/materials/tests.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/ishtar/materials/tests.py b/ishtar/materials/tests.py
deleted file mode 100644
index 2247054b3..000000000
--- a/ishtar/materials/tests.py
+++ /dev/null
@@ -1,23 +0,0 @@
-"""
-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
-"""}
-