CfakeRipperTest (#303)

This commit is contained in:
metaprime 2017-11-30 00:22:16 -08:00 committed by GitHub
parent 927cb286da
commit 9b4ecf8eb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}
}