(t *testing.T)
| 72 | } |
| 73 | |
| 74 | func TestUsersService_ListKeys_invalidUser(t *testing.T) { |
| 75 | t.Parallel() |
| 76 | client, _, _ := setup(t) |
| 77 | |
| 78 | ctx := t.Context() |
| 79 | _, _, err := client.Users.ListKeys(ctx, "%", nil) |
| 80 | testURLParseError(t, err) |
| 81 | } |
| 82 | |
| 83 | func TestUsersService_GetKey(t *testing.T) { |
| 84 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…