public void addsScriptLocationScannerFinds() throws IOException {
String expected = "full blown file";
when(scansDirectory.scan(directory, INCLUDES, EXCLUDES)).thenReturn(asList(FILE_LOCATION));
when(convertsFileToUriString.convert(new File(directory,FILE_LOCATION))).thenReturn(expected);
List<String> result = subject.find(new ScriptSearch(directory,INCLUDES,EXCLUDES));
assertThat(result,hasItem(expected));
}