(self)
| 305 | self.assertListKeyEqual(self.issue.get_labels(), lambda lb: lb.name, ["Bug", "Question"]) |
| 306 | |
| 307 | def testGetReactions(self): |
| 308 | reactions = self.issue.get_reactions() |
| 309 | self.assertEqual(reactions[0].content, "+1") |
| 310 | |
| 311 | def testCreateReaction(self): |
| 312 | reaction = self.issue.create_reaction("hooray") |
nothing calls this directly
no test coverage detected