Added unit test for Myhentaigallery ripper

This commit is contained in:
cyian-1756 2018-08-27 18:02:28 -04:00
parent aa15ba83c5
commit 68e89cabc1

View File

@ -0,0 +1,14 @@
package com.rarchives.ripme.tst.ripper.rippers;
import java.io.IOException;
import java.net.URL;
import com.rarchives.ripme.ripper.rippers.MyhentaigalleryRipper;
public class MyhentaigalleryRipperTest extends RippersTest {
public void testMyhentaigalleryAlbum() throws IOException {
MyhentaigalleryRipper ripper = new MyhentaigalleryRipper(new URL("https://myhentaigallery.com/gallery/thumbnails/9201"));
testRipper(ripper);
}
}