X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=forge%2Ftests.py;fp=forge%2Ftests.py;h=501deb776c16733b19f3509d86e125df78958261;hb=d642f7909de5af80dd951c7a2b2a728acc309b37;hp=0000000000000000000000000000000000000000;hpb=472a1ed07124ac7df43c71024c17ec72362486d8;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)