1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-10 16:04:19 +02:00

Added unit test for Ehentai

This commit is contained in:
cyian-1756
2017-11-21 09:27:13 -05:00
parent e69b32d8a5
commit 2beffeaf0d

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.EHentaiRipper;
public class EhentaiRipperTest extends RippersTest {
public void testHentaiCafeAlbum() throws IOException {
EHentaiRipper ripper = new EHentaiRipper(new URL("https://e-hentai.org/g/1144492/e823bdf9a5/"));
testRipper(ripper);
}
}