Created
December 12, 2012 07:48
-
-
Save lyrl/4265888 to your computer and use it in GitHub Desktop.
as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This file demonstrates writing tests using the unittest module. These will pass | |
when you run "manage.py test". | |
Replace this with more appropriate tests for your application. | |
""" | |
from django.test import TestCase | |
class SimpleTest(TestCase): | |
def test_basic_addition(self): | |
""" | |
Tests that 1 + 1 always equals 2. | |
""" | |
self.assertEqual(1 + 1, 2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment