mirror of
https://github.com/bellingcat/cisticola.git
synced 2026-06-08 03:18:34 +03:00
9 lines
284 B
Python
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)
|