(self)
| 121 | self.assertTrue(self.comment.unminimize()) |
| 122 | |
| 123 | def testGetReactions(self): |
| 124 | reactions = self.comment.get_reactions() |
| 125 | self.assertEqual(reactions[0].content, "+1") |
| 126 | |
| 127 | def testCreateReaction(self): |
| 128 | reaction = self.comment.create_reaction("hooray") |
nothing calls this directly
no test coverage detected