Merge pull request #929 from cyian-1756/PahealRipperTest

Added a test for the PahealRipper
This commit is contained in:
cyian-1756 2018-09-12 17:35:56 -04:00 committed by GitHub
commit ceb3f5a163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,5 +6,9 @@ import java.net.URL;
import com.rarchives.ripme.ripper.rippers.PahealRipper;
public class PahealRipperTest extends RippersTest {
// TODO add a test
public void testPahealRipper() throws IOException {
// a photo set
PahealRipper ripper = new PahealRipper(new URL("http://rule34.paheal.net/post/list/bimbo/1"));
testRipper(ripper);
}
}