@Test
public void add_script() throws Exception
{
Document document = new Document();
document.newRootElement("html").element("body").element("p").text("Ready to be updated with scripts.");
DocumentLinkerImpl linker = new DocumentLinkerImpl(true, "1.2.3", true);
linker.addScript(InitializationPriority.IMMEDIATE, "doSomething();");
linker.addScript(InitializationPriority.IMMEDIATE, "doSomethingElse();");