1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 15:24:51 +02:00

Added test case for bad urls

This commit is contained in:
cyian-1756
2018-12-03 17:26:17 -05:00
parent 18fe9aaea0
commit 35be1768e5

View File

@@ -10,4 +10,10 @@ public class HentaicafeRipperTest extends RippersTest {
HentaiCafeRipper ripper = new HentaiCafeRipper(new URL("https://hentai.cafe/kikuta-the-oni-in-the-room/"));
testRipper(ripper);
}
// This album has a line break (<br />) in the url. Test it to make sure ripme can handle these invalid urls
public void testAlbumWithInvalidChars() throws IOException {
HentaiCafeRipper ripper = new HentaiCafeRipper(new URL("https://hentai.cafe/chobipero-club/"));
testRipper(ripper);
}
}