1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-01-16 20:28:15 +01:00

Remove ArtAlleyRipper - artalley.social is permanently offline

This commit is contained in:
MetaPrime 2025-01-05 01:23:58 -08:00
parent 55efe49cdf
commit b0042145e9
2 changed files with 0 additions and 38 deletions

View File

@ -1,20 +0,0 @@
package com.rarchives.ripme.ripper.rippers;
import java.io.IOException;
import java.net.URL;
public class ArtAlleyRipper extends MastodonRipper {
public ArtAlleyRipper(URL url) throws IOException {
super(url);
}
@Override
public String getHost() {
return "artalley";
}
@Override
public String getDomain() {
return "artalley.social";
}
}

View File

@ -1,18 +0,0 @@
package com.rarchives.ripme.tst.ripper.rippers;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import com.rarchives.ripme.ripper.rippers.ArtAlleyRipper;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
public class ArtAlleyRipperTest extends RippersTest {
@Test
@Disabled("website switched off")
public void testRip() throws IOException, URISyntaxException {
ArtAlleyRipper ripper = new ArtAlleyRipper(new URI("https://artalley.social/@curator/media").toURL());
testRipper(ripper);
}
}