Example #1
0
File: unit.py Project: garethr/mnml
 def test_get_content(self):
     response = HttpResponse()
     self.assertEqual(response.get_content(), [b'', '\n'])
Example #2
0
File: unit.py Project: garethr/mnml
 def test_response_set_invalid_code(self):
     response = HttpResponse()
     response.set_status(900)
     self.assertEqual(response.get_status(), '500 Internal Server Error')
Example #3
0
File: unit.py Project: garethr/mnml
 def test_response_headers(self):
     response = HttpResponse()
     self.assertEqual(response.get_headers(), [('content-length', '0'), ('content-type', 'text/html'), ('Location', '/')])
Example #4
0
File: unit.py Project: pilif/mnml
 def test_response_headers(self):
     response = HttpResponse()
     self.assertEqual(response.get_headers(), [('content-length', '0'), ('content-type', 'text/html; charset=utf-8')])