*/
@Test
public void iteratesIssues() throws Exception {
final Repo repo = this.repo();
final String name = "bug";
repo.labels().create(name, "c0c0c0");
final Issue issue = repo.issues().create("title", "body");
issue.labels().add(Collections.singletonList(name));
MatcherAssert.assertThat(
issue.labels().iterate(),
Matchers.<Label>iterableWithSize(1)