* MkGitignores can fetch single gitignore template.
* @throws Exception if some problem inside
*/
@Test
public void canFetchSingleRawTemplate() throws Exception {
final Gitignores gitignores = new MkGithub().gitignores();
MatcherAssert.assertThat(
gitignores.template("Java"),
Matchers.startsWith("*.class")
);
}