}
@Test
public void summaryIsFirst500Characters() throws Exception {
String content = Fixtures.load("/fixtures/understanding/amqp/README.html");
UnderstandingDoc guide = new UnderstandingDoc("foo", content, "sidebar");
SearchEntry entry = mapper.map(guide);
assertThat(entry.getSummary().length(), equalTo(500));
}