assertThat(elementsToInstall.size(), is(2));
}
@Test
public void extendsBaseUrlWhenDownloadingElements() throws Exception {
Installation installation = FilesystemInstallation.create(folder.getRoot(), new NullReport());
HttpInstaller installer = createInstaller(installation);
installer.installElement("fileToUpdate", new NumericVersion(5, 0, 4));
assertThat(new File(folder.getRoot(), "fileToUpdate").exists(), is(true));
}