1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-22 13:33:18 +02:00
This commit is contained in:
MetaPrime
2025-04-19 19:37:17 -07:00
parent 5f5e346ee4
commit 3062485d58

View File

@@ -4,11 +4,15 @@ import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import org.junit.jupiter.api.Test;
import com.rarchives.ripme.ripper.rippers.CfakeRipper;
public class CfakeRipperTest extends RippersTest {
@Test
public void testRip() throws IOException, URISyntaxException {
CfakeRipper ripper = new CfakeRipper(new URI("https://cfake.com/images/celebrity/Zooey_Deschanel/1264").toURL());
CfakeRipper ripper = new CfakeRipper(
new URI("https://cfake.com/images/celebrity/Zooey_Deschanel/1264").toURL());
testRipper(ripper);
}
}