From 1c9a2b92950d9ac1ac09cecf77d9aae9502aef97 Mon Sep 17 00:00:00 2001 From: Jayaram R Pai Date: Thu, 18 Sep 2014 18:42:08 +0530 Subject: re-migrated to django 1.5 --- website/tests.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'website') diff --git a/website/tests.py b/website/tests.py index 7ce503c..501deb7 100644 --- a/website/tests.py +++ b/website/tests.py @@ -1,3 +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 -# Create your tests here. + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) -- cgit