Files
cisticola/tests/scraper/bitchute.py
2022-03-04 12:36:09 -06:00

9 lines
292 B
Python

from cisticola.base import Channel
from cisticola.scraper import BitchuteScraper
def test_scrape_bitchute_channel(controller, channel_kwargs):
channels = [Channel(**channel_kwargs['bitchute'])]
controller.register_scraper(BitchuteScraper())
controller.scrape_channels(channels)