(self)
| 475 | ) |
| 476 | |
| 477 | def testGetPublicReceivedEvents(self): |
| 478 | self.assertListKeyBegin( |
| 479 | self.user.get_public_received_events(), |
| 480 | lambda e: e.type, |
| 481 | [ |
| 482 | "IssueCommentEvent", |
| 483 | "IssueCommentEvent", |
| 484 | "IssueCommentEvent", |
| 485 | "IssueCommentEvent", |
| 486 | ], |
| 487 | ) |
| 488 | |
| 489 | def testGetReceivedEvents(self): |
| 490 | self.assertListKeyBegin( |
nothing calls this directly
no test coverage detected