Exemplo n.º 1
0
 def test_invalid_content_type(self):
     self.assertFalse(trhutil._is_json_utf8_content_type("dave"))
Exemplo n.º 2
0
 def test_valid_content_type_002(self):
     self.assertTrue(trhutil._is_json_utf8_content_type("APPLICATION/json; charset=utf-8"))
Exemplo n.º 3
0
 def test_valid_content_type_006(self):
     self.assertTrue(trhutil._is_json_utf8_content_type("application/json; charset=utf8"))
Exemplo n.º 4
0
 def test_none_content_type(self):
     self.assertFalse(trhutil._is_json_utf8_content_type(None))