(self)
| 66 | ) |
| 67 | |
| 68 | def test_binary_masked(self): |
| 69 | self.assertFrameData( |
| 70 | Frame(OP_BINARY, b"Eggs"), |
| 71 | b"\x82\x84\x53\xcd\xe2\x89\x16\xaa\x85\xfa", |
| 72 | mask=True, |
| 73 | ) |
| 74 | |
| 75 | def test_non_ascii_text_unmasked(self): |
| 76 | self.assertFrameData( |
nothing calls this directly
no test coverage detected