* Test for {@link Utils#getScriptResources(IFile)}.<br>
* No scripts, because <code>.nocache.js</code> from HTML is ignored.
*/
public void test_getScriptResources_1() throws Exception {
assertThat(getFileContent("war/Module.html")).contains(".nocache.js");
ModuleDescription moduleDescription = getTestModuleDescription();
List<String> resources = Utils.getScriptResources(moduleDescription);
assertThat(resources).isEmpty();
}