Add WebtoonsRipperTest (#268)

This commit is contained in:
metaprime 2017-11-21 12:29:57 -08:00 committed by GitHub
parent 4f12914da4
commit ab600e1fa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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.WebtoonsRipper;
public class WebtoonsRipperTest extends RippersTest {
public void testWebtoonsAlbum() throws IOException {
WebtoonsRipper ripper = new WebtoonsRipper(new URL("http://www.webtoons.com/en/drama/my-boo/ep-33/viewer?title_no=1185&episode_no=33"));
testRipper(ripper);
}
}