6 lines
145 B
Python
6 lines
145 B
Python
from django.test import TestCase
|
|
|
|
# Create your tests here.
|
|
class SmokeTest(TestCase):
|
|
def test_bad_maths(self):
|
|
self.assertEqual(1 + 1, 3) |