public void loadGuideSubtitle() throws IOException {
String description = "Awesome Guide :: Learn awesome stuff with this guide";
REPO_INFO.setDescription(description);
given(org.getReadme(anyString())).willReturn(readme);
given(org.getRepoInfo(GUIDE_REPO_NAME)).willReturn(REPO_INFO);
GettingStartedGuide guide = gsGuides.find(GUIDE_ID);
assertThat(guide.getSubtitle(), equalTo("Learn awesome stuff with this guide"));
}