mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-09 07:16:45 +02:00
Added kingcomix.com ripper and test
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.rarchives.ripme.tst.ripper.rippers;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
|
||||
import com.rarchives.ripme.ripper.rippers.KingcomixRipper;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class KingcomixRipperTest extends RippersTest {
|
||||
|
||||
@Test
|
||||
public void testRip() throws IOException {
|
||||
KingcomixRipper ripper = new KingcomixRipper(new URL("https://kingcomix.com/aunt-cumming-tracy-scops/"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetGID() throws IOException {
|
||||
URL url = new URL("https://kingcomix.com/aunt-cumming-tracy-scops/");
|
||||
KingcomixRipper ripper = new KingcomixRipper(url);
|
||||
assertEquals("aunt-cumming-tracy-scops", ripper.getGID(url));
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user