예제 #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)