(self)
| 39 | self.assertFalse(eq.empty()) |
| 40 | |
| 41 | def test_flush_buf(self): |
| 42 | eq = self.make_eventqueue() |
| 43 | eq.buf.extend(b"test") |
| 44 | self.assertEqual(eq.flush_buf(), b"test") |
| 45 | self.assertEqual(eq.buf, bytearray()) |
| 46 | |
| 47 | def test_insert(self): |
| 48 | eq = self.make_eventqueue() |
nothing calls this directly
no test coverage detected