Add twitter_username to Person and bio and hireable to User

This commit is contained in:
Chew
2020-06-07 00:55:44 -05:00
parent 10482c0141
commit dee4e6caff
6 changed files with 111 additions and 3 deletions

View File

@@ -102,4 +102,11 @@ public class GHUserTest extends AbstractGitHubWireMockTest {
repository.delete();
}
}
@Test
public void verifyBioAndHireable() throws IOException {
GHUser u = gitHub.getUser("GitHub");
assertNotNull(u.getBio());
assertNotNull(u.isHireable());
}
}