()
| 854 | } |
| 855 | |
| 856 | func testConfig() func() (gh.Config, error) { |
| 857 | cfg := config.NewMockConfigFromString("hosts:\n github.com:\n oauth_token: gho_a_token_that_can_upload\n") |
| 858 | return func() (gh.Config, error) { return cfg, nil } |
| 859 | } |
| 860 | |
| 861 | func mockCommentCreate(t *testing.T, reg *httpmock.Registry) { |
| 862 | reg.Register( |
no test coverage detected