(self)
| 62 | assert "/path/to/github/graphql" == get_graphql_prefix("/path/to/github") |
| 63 | |
| 64 | def testDefaultUrl(self): |
| 65 | pull = self.g.get_repo("PyGithub/PyGithub").get_pull(31) |
| 66 | response = pull.disable_automerge() |
| 67 | assert response == self.expected() |
| 68 | |
| 69 | def testOtherUrl(self): |
| 70 | base_url = "https://my.enterprise.com/api/v3" |
nothing calls this directly
no test coverage detected