()
| 952 | } |
| 953 | |
| 954 | func testConfig() func() (gh.Config, error) { |
| 955 | cfg := config.NewMockConfigFromString("hosts:\n github.com:\n oauth_token: gho_a_token_that_can_upload\n") |
| 956 | return func() (gh.Config, error) { return cfg, nil } |
| 957 | } |
| 958 | |
| 959 | func mockCommentCreate(t *testing.T, reg *httpmock.Registry) { |
| 960 | reg.Register( |
no test coverage detected