@Test
public void canCreateAPull() throws Exception {
final Repo repo = MkPullsTest.repo();
final Pull pull = repo.pulls().create("hello", "", "");
final Issue.Smart issue = new Issue.Smart(
repo.issues().get(pull.number())
);
MatcherAssert.assertThat(
issue.title(),
Matchers.is("hello")
);