(t *testing.T)
| 51 | } |
| 52 | |
| 53 | func TestRepositoriesService_ListKeys_invalidOwner(t *testing.T) { |
| 54 | t.Parallel() |
| 55 | client, _, _ := setup(t) |
| 56 | |
| 57 | ctx := t.Context() |
| 58 | _, _, err := client.Repositories.ListKeys(ctx, "%", "%", nil) |
| 59 | testURLParseError(t, err) |
| 60 | } |
| 61 | |
| 62 | func TestRepositoriesService_GetKey(t *testing.T) { |
| 63 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…