X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Ftests.py;fp=portal%2Ftests.py;h=501deb776c16733b19f3509d86e125df78958261;hb=af7c18aea18be19b7227b25a019af4d257cee7dd;hp=0000000000000000000000000000000000000000;hpb=d0ac1170425c64337c521b673b88d75425b8adba;p=unfold.git diff --git a/portal/tests.py b/portal/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/portal/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)