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