(t *testing.T)
| 203 | } |
| 204 | |
| 205 | func TestRateLimits_coverage(t *testing.T) { |
| 206 | t.Parallel() |
| 207 | client, _, _ := setup(t) |
| 208 | |
| 209 | ctx := t.Context() |
| 210 | |
| 211 | const methodName = "RateLimits" |
| 212 | testNewRequestAndDoFailure(t, methodName, client, func() (*Response, error) { |
| 213 | _, resp, err := client.RateLimit.Get(ctx) |
| 214 | return resp, err |
| 215 | }) |
| 216 | } |
| 217 | |
| 218 | func TestRateLimits_overQuota(t *testing.T) { |
| 219 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…