comparison mippet/tests.py @ 1:013cf0aa49b7

Implement basic mippets, stub templates
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Thu, 24 Jun 2010 08:59:14 -0500
parents
children
comparison
equal deleted inserted replaced
0:448f907a9d7e 1:013cf0aa49b7
1 """
2 This file demonstrates two different styles of tests (one doctest and one
3 unittest). These will both pass when you run "manage.py test".
4
5 Replace these with more appropriate tests for your application.
6 """
7
8 from django.test import TestCase
9
10 class SimpleTest(TestCase):
11 def test_basic_addition(self):
12 """
13 Tests that 1 + 1 always equals 2.
14 """
15 self.failUnlessEqual(1 + 1, 2)
16
17 __test__ = {"doctest": """
18 Another way to test that 1 + 1 is equal to 2.
19
20 >>> 1 + 1 == 2
21 True
22 """}
23