* @throws Exception If some problem inside
*/
@Test
public void createsMultipleIssues() throws Exception {
final Github github = new MkGithub("jeff");
final Repo repo = github.repos().create(
Json.createObjectBuilder().add("name", "test-3").build()
);
for (int idx = 1; idx < Tv.TEN; ++idx) {
repo.issues().create("title", "body");
}