Django - Testing Django Applications
Examine this test snippet:
What is the likely issue here?
client = Client()
response = client.post('/submit/', {'name': 'John'}, content_type='application/json')What is the likely issue here?
