Added unit test for NudeGalsRipper

This commit is contained in:
cyian-1756 2018-05-06 05:34:00 -04:00
parent 2001ada6f4
commit 7e766b2bc2

View File

@ -1,4 +1,18 @@
package com.rarchives.ripme.tst.ripper.rippers;
public class NudeGalsRipperTest {
import java.io.IOException;
import java.net.URL;
import com.rarchives.ripme.ripper.rippers.NudeGalsRipper;
public class NudeGalsRipperTest extends RippersTest {
public void testRip() throws IOException {
NudeGalsRipper ripper = new NudeGalsRipper(new URL("https://nude-gals.com/photoshoot.php?photoshoot_id=5541"));
testRipper(ripper);
}
public void testGetGID() throws IOException {
NudeGalsRipper ripper = new NudeGalsRipper(new URL("https://nude-gals.com/photoshoot.php?photoshoot_id=5541"));
assertEquals("5541", ripper.getGID( new URL("https://nude-gals.com/photoshoot.php?photoshoot_id=5541")));
}
}