@Test
public void testSimpleNested() throws Exception {
MockApplication<?> app = application("plugin.template.tag.simple.nested").init();
MockClient client = app.client();
MockViewBridge render = client.render();
String out = render.assertStringResponse();
assertEquals("<index><foo><bar>foo_content</bar></foo></index>", out);
}