コード例 #1
0
ファイル: test_resource.py プロジェクト: ish/restish
 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
ファイル: test_http.py プロジェクト: bloodearnest/restish
 def test_no_content(self):
     r = http.no_content()
     assert r.status.startswith('204')
     assert r.headers.get('Content-Type') is None