aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/projects/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'snakeplan/projects/tests.py')
-rwxr-xr-xsnakeplan/projects/tests.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/snakeplan/projects/tests.py b/snakeplan/projects/tests.py
deleted file mode 100755
index 2247054..0000000
--- a/snakeplan/projects/tests.py
+++ /dev/null
@@ -1,23 +0,0 @@
1"""
2This file demonstrates two different styles of tests (one doctest and one
3unittest). These will both pass when you run "manage.py test".
4
5Replace these with more appropriate tests for your application.
6"""
7
8from django.test import TestCase
9
10class SimpleTest(TestCase):
11 def test_basic_addition(self):
12 """
13 Tests that 1 + 1 always equals 2.
14 """
15 self.failUnlessEqual(1 + 1, 2)
16
17__test__ = {"doctest": """
18Another way to test that 1 + 1 is equal to 2.
19
20>>> 1 + 1 == 2
21True
22"""}
23