1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 15:24:51 +02:00

Added unit test for hentai foundry stories

This commit is contained in:
cyian-1756
2018-12-13 06:02:57 -05:00
parent 3b2b1d356d
commit cd8e7c37c1

View File

@@ -7,7 +7,12 @@ import com.rarchives.ripme.ripper.rippers.HentaifoundryRipper;
public class HentaifoundryRipperTest extends RippersTest { public class HentaifoundryRipperTest extends RippersTest {
public void testHentaifoundryRip() throws IOException { public void testHentaifoundryRip() throws IOException {
HentaifoundryRipper ripper = new HentaifoundryRipper(new URL("http://www.hentai-foundry.com/pictures/user/personalami")); HentaifoundryRipper ripper = new HentaifoundryRipper(new URL("https://www.hentai-foundry.com/pictures/user/personalami"));
testRipper(ripper);
}
public void testHentaifoundryPdfRip() throws IOException {
HentaifoundryRipper ripper = new HentaifoundryRipper(new URL("https://www.hentai-foundry.com/stories/user/Rakked"));
testRipper(ripper); testRipper(ripper);
} }
} }