Django - Testing Django Applications
You wrote this Django test but it fails with an error:
What is the problem?
from django.test import TestCase
class MyTest(TestCase):
def test_example(self):
self.assertTrue(True)What is the problem?
