(t *testing.T)
| 22 | } |
| 23 | |
| 24 | func TestGetMyLimitsUnauthorized(t *testing.T) { |
| 25 | srv := testServer(t) |
| 26 | code, _ := getJSON(t, srv.URL+"/v1/account", "") |
| 27 | if code != 401 { |
| 28 | t.Fatalf("want 401, got %d", code) |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | // TestListSuppressionsPagination exercises the A-5 cursor round-trip: page 1 |
| 33 | // returns `limit` items + a next_cursor, and replaying that cursor returns the |
nothing calls this directly
no test coverage detected