* MkIssues can list issues.
* @throws Exception If some problem inside
*/
@Test
public void iteratesIssues() throws Exception {
final Repo repo = this.repo();
repo.issues().create("hey, you", "body of issue");
repo.issues().create("hey", "body of 2nd issue");
repo.issues().create("hey again", "body of 3rd issue");
MatcherAssert.assertThat(
repo.issues().iterate(new ArrayMap<String, String>()),
Matchers.<Issue>iterableWithSize(Tv.THREE)
);
}