(self)
| 44 | self.assertEqual(issue.number, 99) |
| 45 | |
| 46 | def testCreateIssueWithPercentInBody(self): |
| 47 | issue = self.repo.create_issue("Issue created by PyGithub", "Percent % in body") |
| 48 | self.assertEqual(issue.number, 98) |
| 49 | |
| 50 | def testCreateIssueWithEscapedPercentInTitle(self): |
| 51 | issue = self.repo.create_issue("Issue with escaped percent %25 in title created by PyGithub") |
nothing calls this directly
no test coverage detected