(self)
| 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") |
| 52 | self.assertEqual(issue.number, 97) |
| 53 | |
| 54 | def testCreateIssueWithEscapedPercentInBody(self): |
| 55 | issue = self.repo.create_issue("Issue created by PyGithub", "Escaped percent %25 in body") |
nothing calls this directly
no test coverage detected