(t *testing.T)
| 283 | } |
| 284 | |
| 285 | func TestPRList_withInvalidLimitFlag(t *testing.T) { |
| 286 | http := initFakeHTTP() |
| 287 | defer http.Verify(t) |
| 288 | _, err := runCommand(http, nil, true, `--limit=0`) |
| 289 | assert.EqualError(t, err, "invalid value for --limit: 0") |
| 290 | } |
| 291 | |
| 292 | func TestPRList_web(t *testing.T) { |
| 293 | tests := []struct { |
nothing calls this directly
no test coverage detected