assertSubString("<a href=\"SamplePage?edit\" accesskey=\"e\">Edit Locally</a>", content);
assertSubString("<a href=\"blah?responder=edit&redirectToReferer=true&redirectAction=importAndView\">Edit Remotely</a>", content);
}
private String getContentAfterSpecialImportHandling() {
HtmlPage html = new PageFactory(FitNesseUtil.makeTestContext()).newPage();
WikiImportingResponder.handleImportProperties(html, page);
html.setNavTemplate("wikiNav.vm");
html.put("actions", new WikiPageActions(page));
return html.html();
}