Skip to content

Commit

Permalink
DeviantartRipper is still broken, but while testing it I discovered a…
Browse files Browse the repository at this point in the history
… new type of URL that might be handy to test, so I've added that to the test
  • Loading branch information
metaprime committed Jan 5, 2025
1 parent ab6744d commit 92579d6
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ public void testDeviantartNSFWAlbum() throws IOException, URISyntaxException {
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 {
Expand Down

0 comments on commit 92579d6

Please sign in to comment.