Django - Testing Django Applications
Consider this Django test case snippet:
What will happen when you run this test?
from django.test import TestCase
class SimpleTest(TestCase):
def test_addition(self):
self.assertEqual(2 + 2, 4)What will happen when you run this test?
