(self)
| 115 | self.comment.delete() |
| 116 | |
| 117 | def testGetReactions(self): |
| 118 | reactions = self.comment.get_reactions() |
| 119 | self.assertEqual(reactions[0].content, "+1") |
| 120 | |
| 121 | def testCreateReaction(self): |
| 122 | reaction = self.comment.create_reaction("hooray") |
nothing calls this directly
no test coverage detected