* @throws Exception If some problem inside
*/
@Test
public void iteratesForks() throws Exception {
final Repo repo = this.repo();
final Fork fork = repo.forks().create("Organization");
final Iterable<Fork> iterate = repo.forks().iterate("Order");
MatcherAssert.assertThat(
iterate,
Matchers.<Fork>iterableWithSize(1)
);