EroShareRipperTest (disabled per #306)
This commit is contained in:
parent
5f7487fa93
commit
e3a1462c2c
@ -0,0 +1,49 @@
|
||||
package com.rarchives.ripme.tst.ripper.rippers;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
|
||||
import com.rarchives.ripme.ripper.rippers.EroShareRipper;
|
||||
import com.rarchives.ripme.ripper.rippers.RedditRipper;
|
||||
|
||||
public class EroShareRipperTest extends RippersTest {
|
||||
/*
|
||||
|
||||
// https://github.com/RipMeApp/ripme/issues/306 : EroShareRipper broken (even for eroshae links)
|
||||
|
||||
// single image posts
|
||||
|
||||
public void testImageEroshareFromRedditRip() throws IOException {
|
||||
RedditRipper ripper = new RedditRipper(new URL("https://www.reddit.com/r/BestOfEroshare/comments/5z7foo/good_morning_who_likes_abstract_asian_artwork_f/"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
public void testImageEroshareRip() throws IOException {
|
||||
EroShareRipper ripper = new EroShareRipper(new URL("https://eroshare.com/i/5j2qln3f"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
public void testImageEroshaeRip() throws IOException {
|
||||
EroShareRipper ripper = new EroShareRipper(new URL("https://eroshae.com/i/5j2qln3f"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
// video album post
|
||||
|
||||
public void testVideoAlbumFromRedditRip() throws IOException {
|
||||
EroShareRipper ripper = new EroShareRipper(new URL("https://www.reddit.com/r/BestOfEroshare/comments/5vyfnw/asian_mf_heard_i_should_post_here_date_night_her/"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
public void testVideoAlbumEroshareRip() throws IOException {
|
||||
EroShareRipper ripper = new EroShareRipper(new URL("https://eroshare.com/wqnl6f00"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
public void testVideoAlbumEroshaeRip() throws IOException {
|
||||
EroShareRipper ripper = new EroShareRipper(new URL("https://eroshae.com/wqnl6f00"));
|
||||
testRipper(ripper);
|
||||
}
|
||||
|
||||
*/
|
||||
}
|
Loading…
Reference in New Issue
Block a user