(self)
| 67 | assert response == self.expected() |
| 68 | |
| 69 | def testOtherUrl(self): |
| 70 | base_url = "https://my.enterprise.com/api/v3" |
| 71 | gh = Github(base_url=base_url) |
| 72 | pull = gh.get_repo("PyGithub/PyGithub").get_pull(31) |
| 73 | response = pull.disable_automerge() |
| 74 | assert response == self.expected(base_url) |
| 75 | |
| 76 | def testOtherPort(self): |
| 77 | base_url = "https://my.enterprise.com:8080/api/v3" |
nothing calls this directly
no test coverage detected