1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-28 16:19:58 +02:00

DeviantartRipper is still broken, but while testing it I discovered a new type of URL that might be handy to test, so I've added that to the test

This commit is contained in:
MetaPrime
2025-01-05 01:45:04 -08:00
parent ab6744d209
commit 92579d6179

View File

@@ -30,6 +30,14 @@ public class DeviantartRipperTest extends RippersTest {
testRipper(ripper);
}
@Test
@Disabled("Broken ripper")
public void testDeviantartNSFWAlbumSpecificGallery() throws IOException, URISyntaxException {
URL url = new URI("https://www.deviantart.com/justgenitals/gallery/64358240/special-minamishots").toURL();
DeviantartRipper ripper = new DeviantartRipper(url);
Assertions.assertEquals("airgee", ripper.getGID(url));
}
@Test
@Disabled("Broken ripper")
public void testGetGID() throws IOException, URISyntaxException {