(self)
| 42 | |
| 43 | class GistComment(Framework.TestCase): |
| 44 | def setUp(self): |
| 45 | super().setUp() |
| 46 | self.comment = self.g.get_gist("2729810").get_comment(323629) |
| 47 | |
| 48 | def testAttributes(self): |
| 49 | self.assertIsNone(self.comment.author_association) |
nothing calls this directly
no test coverage detected