1 # -*- coding: utf-8 -*-
 
   3 This file demonstrates writing tests using the unittest module. These will pass
 
   4 when you run "manage.py test".
 
   6 Replace this with more appropriate tests for your application.
 
   9 from django.test import TestCase
 
  12 class SimpleTest(TestCase):
 
  13     def test_basic_addition(self):
 
  15         Tests that 1 + 1 always equals 2.
 
  17         self.assertEqual(1 + 1, 2)