Skip to content

Commit

Permalink
Add test for FreeComicOnlineRipper
Browse files Browse the repository at this point in the history
  • Loading branch information
metaprime committed Jan 7, 2025
1 parent 4ac7b1a commit bca1b33
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.rarchives.ripme.tst.ripper.rippers;

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;

import org.junit.jupiter.api.Test;

import com.rarchives.ripme.ripper.rippers.FreeComicOnlineRipper;

public class FreeComicOnlineRipperTest extends RippersTest {
@Test
public void testFreeComicOnlineChapterAlbum() throws IOException, URISyntaxException {
FreeComicOnlineRipper ripper = new FreeComicOnlineRipper(
new URI("https://freecomiconline.me/comic/perfect-half-hentai0003/chapter-01/").toURL());
testRipper(ripper);
}
}

0 comments on commit bca1b33

Please sign in to comment.