Added unittest for Hentaiimage Ripper

This commit is contained in:
cyian-1756 2018-08-06 14:30:31 -04:00
parent 49b8471f41
commit 09abf5ab6c

View File

@ -0,0 +1,13 @@
package com.rarchives.ripme.tst.ripper.rippers;
import java.io.IOException;
import java.net.URL;
import com.rarchives.ripme.ripper.rippers.HentaiimageRipper;
public class HentaiimageRipperTest extends RippersTest {
public void testHentaifoundryRip() throws IOException {
HentaiimageRipper ripper = new HentaiimageRipper(new URL("https://hentai-image.com/image/afrobull-gerudo-ongoing-12/"));
testRipper(ripper);
}
}