10 lines
199 B
Python
10 lines
199 B
Python
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)
|