assertCollected("START[+hello]END");
}
// FIXME add processing to tract templating to explicitly override "this"
public void x_testNoAppThisOverrideTemplate1() throws IOException {
Tract tpl = new MapTract("START[${this}]END");
tpl.put("this", "hello");
templates.put("default", tpl);
context.put("this", "huh");
Mojasef.delegateAndExpand(collector, keeper, null, dfl);
assertCollected("START[huh]END");
}