1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-01-16 20:28:15 +01:00

Add another URL to AllporncomicRipper test, but ripper is still broken due to site changes causing 403

This commit is contained in:
MetaPrime 2025-01-05 01:21:28 -08:00
parent ac6cbf81ac
commit 55efe49cdf

View File

@ -11,9 +11,19 @@ import java.net.URISyntaxException;
public class AllporncomicRipperTest extends RippersTest {
@Test
@Tag("flaky")
public void testAlbum() throws IOException, URISyntaxException {
public void testAlbum1() throws IOException, URISyntaxException {
AllporncomicRipper ripper = new AllporncomicRipper(
new URI("https://allporncomic.com/porncomic/dnd-pvp-dungeons-dragons-fred-perry/1-dnd-pvp").toURL());
testRipper(ripper);
}
@Test
@Tag("flaky")
public void testAlbum2() throws IOException, URISyntaxException {
AllporncomicRipper ripper = new AllporncomicRipper(
new URI("https://allporncomic.com/porncomic/hinatas-addiction-boruto-burgersnshakesa/3-hinatas-addiction/")
.toURL());
testRipper(ripper);
}
}