(self)
| 74 | assert response == self.expected(base_url) |
| 75 | |
| 76 | def testOtherPort(self): |
| 77 | base_url = "https://my.enterprise.com:8080/api/v3" |
| 78 | gh = Github(base_url=base_url) |
| 79 | pull = gh.get_repo("PyGithub/PyGithub").get_pull(31) |
| 80 | response = pull.disable_automerge() |
| 81 | assert response == self.expected(base_url) |
| 82 | |
| 83 | def testNode(self): |
| 84 | requester = self.g._Github__requester |
nothing calls this directly
no test coverage detected