@Test
public void testFileTemplate() {
User user = new User();
user.setUserName("JunHo Yoon");
String content = fileEntryService.loadTemplate(user, new JythonScriptHandler(), "http://helloworld/myname/is",
"hello");
assertThat(content, containsString("JunHo Yoon"));
assertThat(content, containsString("http://helloworld/myname/is"));
}