+# -*- coding: utf-8 -*-
"""
This file demonstrates two different styles of tests (one doctest and one
unittest). These will both pass when you run "manage.py test".
from django.test import TestCase
+
class SimpleTest(TestCase):
def test_basic_addition(self):
"""
>>> 1 + 1 == 2
True
"""}
-