summaryrefslogtreecommitdiff
path: root/sublab_project/calendarium/tests.py
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2012-01-02 02:26:33 +0100
committerChristian Franke <nobody@nowhere.ws>2012-01-02 02:28:35 +0100
commitd52f1cf588d265ef85545a2725bd6c0537402282 (patch)
treeb77253cb7bd6e5efc1b15bfc85590e9555a509f4 /sublab_project/calendarium/tests.py
parent31486bf6431f1f42adfe2584ce8d5b7d42defadd (diff)
Add calendarium for iCal foo
Diffstat (limited to 'sublab_project/calendarium/tests.py')
-rw-r--r--sublab_project/calendarium/tests.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/sublab_project/calendarium/tests.py b/sublab_project/calendarium/tests.py
new file mode 100644
index 0000000..501deb7
--- /dev/null
+++ b/sublab_project/calendarium/tests.py
@@ -0,0 +1,16 @@
+"""
+This file demonstrates writing tests using the unittest module. These will pass
+when you run "manage.py test".
+
+Replace this 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.assertEqual(1 + 1, 2)