Skip to content

Instantly share code, notes, and snippets.

@xiantail
Created December 31, 2015 02:38
Show Gist options
  • Save xiantail/1d2b9b02c2385c9fc7b2 to your computer and use it in GitHub Desktop.
Save xiantail/1d2b9b02c2385c9fc7b2 to your computer and use it in GitHub Desktop.
TDD with Python / Chapter 3 / minimum test
from django.test import TestCase
class SmokeTest(TestCase):
def test_bad_maths(self):
self.assertEqual(1 + 1, 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment