(t *testing.T)
| 95 | } |
| 96 | |
| 97 | func TestRepositoriesService_GetKey_invalidOwner(t *testing.T) { |
| 98 | t.Parallel() |
| 99 | client, _, _ := setup(t) |
| 100 | |
| 101 | ctx := t.Context() |
| 102 | _, _, err := client.Repositories.GetKey(ctx, "%", "%", 1) |
| 103 | testURLParseError(t, err) |
| 104 | } |
| 105 | |
| 106 | func TestRepositoriesService_CreateKey(t *testing.T) { |
| 107 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…