Skip to content

Instantly share code, notes, and snippets.

@olivergeorge
Created October 4, 2009 02:00
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 olivergeorge/201055 to your computer and use it in GitHub Desktop.
Save olivergeorge/201055 to your computer and use it in GitHub Desktop.
Tweaked django application templates (based on "django-admin startapp myapp")
from django.db import models
# Create your models here.
"""
This file demonstrates two different styles of tests (one doctest and one
unittest). These will both pass when you run "manage.py test".
Replace these 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.failUnlessEqual(1 + 1, 2)
__test__ = {"doctest": """
Another way to test that 1 + 1 is equal to 2.
>>> 1 + 1 == 2
True
"""}
# Create your views here.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment