diff --git a/src/test/java/com/rarchives/ripme/tst/ripper/rippers/VscoRipperTest.java b/src/test/java/com/rarchives/ripme/tst/ripper/rippers/VscoRipperTest.java index 435c9aaa..799b4d09 100644 --- a/src/test/java/com/rarchives/ripme/tst/ripper/rippers/VscoRipperTest.java +++ b/src/test/java/com/rarchives/ripme/tst/ripper/rippers/VscoRipperTest.java @@ -7,19 +7,38 @@ import java.net.URL; public class VscoRipperTest extends RippersTest { /** - * Testing Rip. + * Testing single image. * @throws IOException */ - public void testSingleImageRip() throws IOException{ + public void testSingleImageRip() throws IOException { VscoRipper ripper = new VscoRipper(new URL("https://vsco.co/minijello/media/571cd612542220261a123441")); testRipper(ripper); } + /** + * Tests profile rip. + * @throws IOException + */ + public void testProfileRip() throws IOException { + VscoRipper ripper = new VscoRipper(new URL("https://vsco.co/jonathangodoy/images/1")); + testRipper(ripper); + } + + /** + * Prevents Bug #679 from happening again. + * https://github.com/RipMeApp/ripme/issues/679 + * @throws IOException + */ + public void testHyphenatedRip() throws IOException { + VscoRipper ripper = new VscoRipper(new URL("")); + testRipper(ripper); + } + /** * Make sure it names the folder something sensible. * @throws IOException */ - public void testGetGID() throws IOException{ + public void testGetGID() throws IOException { URL url = new URL("https://vsco.co/minijello/media/571cd612542220261a123441"); VscoRipper ripper = new VscoRipper(url);