MCPcopy Index your code
hub / github.com/python-websockets/websockets / test_text_unmasked

Method test_text_unmasked

tests/test_frames.py:47–52  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

45
46class FrameTests(FramesTestCase):
47 def test_text_unmasked(self):
48 self.assertFrameData(
49 Frame(OP_TEXT, b"Spam"),
50 b"\x81\x04Spam",
51 mask=False,
52 )
53
54 def test_text_masked(self):
55 self.assertFrameData(

Callers

nothing calls this directly

Calls 2

assertFrameDataMethod · 0.80
FrameClass · 0.50

Tested by

no test coverage detected