}
@Test
public void shouldAllowTo_loadCustomJavascript() {
Context context = new Context();
VarsParser template = new VarsParser(context, EMPTY_PROPERTIES, new VarsParserJsProcessor(context, jsFunctions));
String realText = template.parse("${load('/specs/customFunction.js')} got it from js: ${customFunction('qwe', 'ert')}");
assertThat(realText, is(" got it from js: qwe-ert"));
}