(t *testing.T)
| 308 | } |
| 309 | |
| 310 | func TestUsersService_IsFollowing_invalidUser(t *testing.T) { |
| 311 | t.Parallel() |
| 312 | client, _, _ := setup(t) |
| 313 | |
| 314 | ctx := t.Context() |
| 315 | _, _, err := client.Users.IsFollowing(ctx, "%", "%") |
| 316 | testURLParseError(t, err) |
| 317 | } |
| 318 | |
| 319 | func TestUsersService_Follow(t *testing.T) { |
| 320 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…