Example #1
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 #2
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')])