diff options
Diffstat (limited to 'tests.py')
-rw-r--r-- | tests.py | 13 |
1 files changed, 0 insertions, 13 deletions
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) |