mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-11 16:34:04 +02:00
crfl --> cr, arttnruppertest
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
package com.rarchives.ripme.tst.ripper.rippers;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
import java.net.URL;
|
||||
|
||||
import com.rarchives.ripme.ripper.rippers.ArtstnRipper;
|
||||
@@ -12,15 +14,15 @@ import org.junit.jupiter.api.Test;
|
||||
public class ArtstnRipperTest extends RippersTest {
|
||||
@Test
|
||||
@Tag("flaky")
|
||||
public void testSingleProject() throws IOException {
|
||||
URL url = new URL("https://artstn.co/p/JlE15Z");
|
||||
public void testSingleProject() throws IOException, URISyntaxException {
|
||||
URL url = new URI("https://artstn.co/p/JlE15Z").toURL();
|
||||
testRipper(new ArtstnRipper(url));
|
||||
}
|
||||
|
||||
@Test
|
||||
@Disabled("Failed with cloudflare protection")
|
||||
public void testUserPortfolio() throws IOException {
|
||||
URL url = new URL("https://artstn.co/m/rv37");
|
||||
public void testUserPortfolio() throws IOException, URISyntaxException {
|
||||
URL url = new URI("https://artstn.co/m/rv37").toURL();
|
||||
testRipper(new ArtstnRipper(url));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user