public void testArgs() throws Exception {
InputStream in = new FileInputStream("src/test/org/apache/commons/jelly/test_args.jelly");
XMLParser parser = new XMLParser();
Script script = parser.parse(in);
script = script.compile();
log.debug("Found: " + script);
assertTrue("Parsed a Script", script instanceof Script);
String[] args = { "one", "two", "three" };
JellyContext context = new JellyContext();
context.setVariable("args", args);