@Test
public void testPageTypePropertiesSkippedHtml() throws Exception {
WikiPage page = WikiPageUtil.addPage(root, PathParser.parse("SomePage"));
PageData data = page.getData();
data.setAttribute("Prune");
page.commit(data);
request.setResource(page.getPageCrawler().getFullPath().toString());
SimpleResponse response = (SimpleResponse) new PropertiesResponder().makeResponse(context, request);
String html = response.getContent();
assertSubString("Page type:", html);
assertSubString("<input type=\"checkbox\" id=\"Prune\" name=\"Prune\" checked=\"checked\"/>", html);