1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-04-21 12:12:38 +02:00

chainrippertest method does nothing, remove

This commit is contained in:
soloturn 2020-07-29 07:36:10 +02:00
parent 084738c1f7
commit e57b5db64f

View File

@ -14,19 +14,6 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
public class ChanRipperTest extends RippersTest {
@Test
public void testChanURLFailures() throws IOException {
List<URL> failURLs = new ArrayList<>();
// URLs that should not work
for (URL url : failURLs) {
try {
new ChanRipper(url);
Assertions.fail("Instantiated ripper for URL that should not work: " + url);
} catch (Exception e) {
// Expected
}
}
}
@Test
public void testChanURLPasses() throws IOException {
List<URL> passURLs = new ArrayList<>();