public void fetchesPullComment() throws Exception {
final PullComments comments = this.comments();
final PullComment comment = comments.post("comment", "commit", "/", 1);
MatcherAssert.assertThat(
comments.get(comment.number()).number(),
Matchers.equalTo(comment.number())
);
}
/**
* MkPullComments can fetch all pull comments for a repo.