assertThat(contents, containsString("* [Documented](Documented.markdown"));
}
@Test
public void html_processor() throws Throwable {
GoloParser parser = new GoloOffsetParser(new FileInputStream(SRC + "doc.golo"));
ASTCompilationUnit compilationUnit = parser.CompilationUnit();
HtmlProcessor processor = new HtmlProcessor();
String result = processor.render(compilationUnit);
assertThat(result, containsString("<h1>Documentation for Documented</h1>"));
assertThat(result, containsString("<h3 id=\"with_doc_a_b\">with_doc(a, b)"));