@Test
public void deletesLabels() throws Exception {
final Repo repo = this.repo();
final Labels labels = repo.labels();
final String name = "label-0";
labels.create(name, "e1e1e1");
final Issue issue = repo.issues().create("hey, you!", "");
issue.labels().add(Collections.singletonList(name));
labels.delete(name);
MatcherAssert.assertThat(
repo.labels().iterate(),