Merge pull request #316 from cyian-1756/more-unit-tests
More unit tests
This commit is contained in:
commit
15ca66a430
@ -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.XbooruRipper;
|
||||
|
||||
public class XbooruRipperTest extends RippersTest {
|
||||
public void testRip() throws IOException {
|
||||
XbooruRipper ripper = new XbooruRipper(new URL("http://xbooru.com/index.php?page=post&s=list&tags=furry"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
}
|
@ -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.ZizkiRipper;
|
||||
|
||||
public class ZizkiRipperTest extends RippersTest {
|
||||
public void testRip() throws IOException {
|
||||
ZizkiRipper ripper = new ZizkiRipper(new URL("http://zizki.com/dee-chorde/we-got-spirit"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user