コード例 #1
0
ファイル: test_hyper.py プロジェクト: ami-GS/hyper
 def test_base_frame_cant_parse_body(self):
     data = b''
     f = Frame(0)
     with pytest.raises(NotImplementedError):
         f.parse_body(data)
コード例 #2
0
ファイル: test_hyper.py プロジェクト: 4honor/hyper
 def test_base_frame_cant_parse_body(self):
     data = b""
     f = Frame(0)
     with pytest.raises(NotImplementedError):
         f.parse_body(data)