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

9 lines
284 B
Python

from cisticola.base import Channel
from cisticola.scraper import RumbleScraper
def test_scrape_rumble_channel(controller, channel_kwargs):
channels = [Channel(**channel_kwargs['rumble'])]
controller.register_scraper(RumbleScraper())
controller.scrape_channels(channels)