1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-19 12:11:40 +02:00

CfakeRipperTest (#303)

This commit is contained in:
metaprime
2017-11-30 00:22:16 -08:00
committed by GitHub
parent 927cb286da
commit 9b4ecf8eb2

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.CfakeRipper;
public class CfakeRipperTest extends RippersTest {
public void testVidbleRip() throws IOException {
CfakeRipper ripper = new CfakeRipper(new URL("http://cfake.com/picture/Zooey_Deschanel/1264"));
testRipper(ripper);
}
}