예제 #1
0
 def json(self, request):
     return http.no_content()
예제 #2
0
 def json(self, request):
     return http.no_content()
예제 #3
0
파일: test_http.py 프로젝트: ish/restish
 def test_no_content(self):
     r = http.no_content()
     assert r.status.startswith('204')
     assert r.headers.get('Content-Type') is None
예제 #4
0
 def test_no_content(self):
     r = http.no_content()
     assert r.status.startswith('204')
     assert r.headers.get('Content-Type') is None