コード例 #1
0
ファイル: test_wsgi.py プロジェクト: B-Rich/watson-http
 def test_process_field_storage(self):
     post, files = _process_field_storage('test', {}, {})
     assert len(post) == 0
コード例 #2
0
ファイル: test_wsgi.py プロジェクト: erhuabushuo/watson
 def test_process_field_storage(self):
     get, post, files = _process_field_storage('test')
     assert len(get) == 0
     assert len(post) == 0
     assert len(files) == 0
コード例 #3
0
ファイル: test_wsgi.py プロジェクト: enigma/watson
 def test_process_field_storage(self):
     get, post, files = _process_field_storage('test')
     assert len(get) == 0
     assert len(post) == 0
     assert len(files) == 0