(t *testing.T)
| 844 | } |
| 845 | |
| 846 | func TestGithubBaseURLIsSet(t *testing.T) { |
| 847 | cfg := getDefaultGithubConfig() |
| 848 | cfg[0].BaseURL = "https://github.example.com" |
| 849 | |
| 850 | require.Equal(t, "https://github.example.com", cfg[0].BaseEndpoint()) |
| 851 | } |
| 852 | |
| 853 | func TestCACertBundle(t *testing.T) { |
| 854 | cfg := Github{ |
nothing calls this directly
no test coverage detected