Django - Testing Django Applications
Given the following test code snippet, what will
response.status_code be if the view exists and returns a normal page?from django.test import Client
client = Client()
response = client.get('/home/')