(self)
| 33 | self.assertEqual(eq.get(), event) |
| 34 | |
| 35 | def test_empty(self): |
| 36 | eq = self.make_eventqueue() |
| 37 | self.assertTrue(eq.empty()) |
| 38 | eq.insert(Event("key", "a", b"a")) |
| 39 | self.assertFalse(eq.empty()) |
| 40 | |
| 41 | def test_flush_buf(self): |
| 42 | eq = self.make_eventqueue() |
nothing calls this directly
no test coverage detected