Skip to content

Commit

Permalink
Merge pull request #1265 from cyian-1756/test-fixes
Browse files Browse the repository at this point in the history
Test fixes
  • Loading branch information
cyian-1756 authored Apr 2, 2019
2 parents 59f84a8 + a596898 commit 1350158
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
import java.net.URL;

public class BlackbrickroadofozRipperTest extends RippersTest {
public void testRip() throws IOException {
BlackbrickroadofozRipper ripper = new BlackbrickroadofozRipper(new URL("http://www.blackbrickroadofoz.com/comic/beginning"));
testRipper(ripper);
}
// Commented out on 02/04/2019 because the serve has been down for a while
// public void testRip() throws IOException {
// BlackbrickroadofozRipper ripper = new BlackbrickroadofozRipper(new URL("http://www.blackbrickroadofoz.com/comic/beginning"));
// testRipper(ripper);
// }
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@ public class SinnercomicsRipperTest extends RippersTest {
public void testSinnercomicsAlbum() throws IOException {
SinnercomicsRipper ripper;

// Comic test
ripper = new SinnercomicsRipper(new URL("https://sinnercomics.com/comic/beyond-the-hotel-page-01/"));
testRipper(ripper);


// Pinup test
ripper = new SinnercomicsRipper(new URL("https://sinnercomics.com/elsa-frozen-2/#comments"));
ripper = new SinnercomicsRipper(new URL("https://sinnercomics.com/comic/gw-addendum-page-01/"));
testRipper(ripper);

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@ public void testTheChiveGif() throws IOException {
/*
* "i.thechive.com" test.
*/
public void testIDotThechive() throws IOException {
ThechiveRipper ripper = new ThechiveRipper(new URL("https://i.thechive.com/HHHoney"));
testRipper(ripper);
}
// Commented out because the link is 404ing TODO: Change the link to a working one and reenable the test
// public void testIDotThechive() throws IOException {
// ThechiveRipper ripper = new ThechiveRipper(new URL("https://i.thechive.com/HHHoney"));
// testRipper(ripper);
// }

/*
*
Expand Down

0 comments on commit 1350158

Please sign in to comment.