summaryrefslogtreecommitdiff
path: root/fb/tests.py
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2011-03-19 20:31:42 +0200
committerYuval Adam <yuv.adm@gmail.com>2011-03-19 20:31:42 +0200
commit8b112c71e15e6de0739e19ba6e11da43d751c5f8 (patch)
tree494b62579c1923315b52bcfeef681c9a19801f77 /fb/tests.py
parent546bf6061665ccc4cf5cccf047f173cd3e960e20 (diff)
added fb app
Diffstat (limited to 'fb/tests.py')
-rw-r--r--fb/tests.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/fb/tests.py b/fb/tests.py
new file mode 100644
index 0000000..2247054
--- /dev/null
+++ b/fb/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
+"""}
+