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

Create NsfwXxxRipperTest.java

This commit is contained in:
2omsnF
2022-09-24 19:55:57 -04:00
committed by soloturn
parent 568587e432
commit aa5bd00d3f

View File

@@ -0,0 +1,15 @@
package com.rarchives.ripme.tst.ripper.rippers;
import com.rarchives.ripme.ripper.rippers.NsfwXxxRipper;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import java.net.URL;
public class NsfwXxxRipperTest extends RippersTest {
@Test
public void testNsfwXxxUser() throws IOException {
NsfwXxxRipper ripper = new NsfwXxxRipper(new URL("https://nsfw.xxx/user/smay3991"));
testRipper(ripper);
}
}