Added sinfest ripper test

This commit is contained in:
cyian-1756 2018-03-11 23:05:23 -04:00
parent 28ce42a54f
commit 8a145d1ff4

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.SinfestRipper;
public class SinfestRipperTest extends RippersTest {
public void testRip() throws IOException {
SinfestRipper ripper = new SinfestRipper(new URL("http://sinfest.net/view.php?date=2000-01-17"));
testRipper(ripper);
}
}