*/
@Test
public void listsReadOnlyLabels() throws Exception {
final Issue issue = this.issue();
final String tag = "test-tag";
issue.repo().labels().create(tag, "c0c0c0");
issue.labels().add(Collections.singletonList(tag));
MatcherAssert.assertThat(
new Issue.Smart(issue).roLabels().iterate(),
Matchers.<Label>hasItem(
new CustomMatcher<Label>("label just created") {