(self)
| 94 | self.comment.delete() |
| 95 | |
| 96 | def testGetReactions(self): |
| 97 | reactions = self.comment.get_reactions() |
| 98 | self.assertEqual(reactions[0].content, "+1") |
| 99 | |
| 100 | def testCreateReaction(self): |
| 101 | reaction = self.comment.create_reaction("hooray") |
nothing calls this directly
no test coverage detected