Skip to content

Instantly share code, notes, and snippets.

@NickSablukov
Created April 9, 2015 13:32
Show Gist options
  • Save NickSablukov/eec5687c4440ce893eeb to your computer and use it in GitHub Desktop.
Save NickSablukov/eec5687c4440ce893eeb to your computer and use it in GitHub Desktop.
homework_django
from django.db import models
# Create your models here.
"""
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)
# Create your views here.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment