Skip to content

Instantly share code, notes, and snippets.

@lyrl
Created December 12, 2012 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyrl/4265888 to your computer and use it in GitHub Desktop.
Save lyrl/4265888 to your computer and use it in GitHub Desktop.
as
"""
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