From e39e81586dd268ce0cc5009f1c4b32a6985f8274 Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Thu, 5 Jul 2012 11:08:13 -0400 Subject: Added some tests --- tests.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 tests.py (limited to 'tests.py') diff --git a/tests.py b/tests.py deleted file mode 100644 index 19c9cf0..0000000 --- a/tests.py +++ /dev/null @@ -1,13 +0,0 @@ -from django.utils import unittest -from django.test.client import Client - -class SimpleTest(unittest.TestCase): - def setUp(self): - # Every test needs a client - self.client = Client() - - def test_index_page(self): - #Issue a get request - response = self.client.get('/') - - self.assertEquals(response.status_code, 200) -- cgit