def test_force_json(self):
"""
We should only allow JSON content-types in this view and reject others
"""
response = self.client.post('/api/pulse/entries/', content_type=MULTIPART_CONTENT)
self.assertEqual(response.status_code, status.HTTP_415_UNSUPPORTED_MEDIA_TYPE)
评论列表
文章目录