Add isUploaderVerified()

This commit is contained in:
TobiGr
2021-02-19 15:51:02 +01:00
parent 91e9309486
commit 02920fafa8
10 changed files with 50 additions and 0 deletions

View File

@@ -57,6 +57,11 @@ public class BandcampChannelExtractorTest implements BaseChannelExtractorTest {
assertEquals(-1, extractor.getSubscriberCount());
}
@Override
public void testVerified() throws Exception {
assertFalse(extractor.isVerified());
}
@Override
public void testRelatedItems() throws Exception {
// not implemented

View File

@@ -132,6 +132,11 @@ public class BandcampPlaylistExtractorTest {
assertEquals(5, extractor.getStreamCount());
}
@Override
public void testUploaderVerified() throws Exception {
assertFalse(extractor.isUploaderVerified());
}
@Test
public void testInitialPage() throws IOException, ExtractionException {
assertNotNull(extractor.getInitialPage().getItems().get(0));