@Test
public void willRetrieveInlineScriptContents() throws MalformedURLException, IOException {
Document document = new Document("");
RemoteWebPage webPage = new RemoteWebPage(document, new URL("http://localhost/"), new MockHttpClient());
// Create inline script tag...
String scriptContents = getResourceAsString("sample_module_libs/non_amd/simple_deps/app.js");
Attributes attrs = new Attributes();
Element inlineScript = new Element(Tag.valueOf("script"), "", attrs);