mirror of
https://github.com/bellingcat/cisticola.git
synced 2026-06-08 03:18:34 +03:00
9 lines
272 B
Python
9 lines
272 B
Python
from cisticola.base import Channel
|
|
from cisticola.scraper import GabScraper
|
|
|
|
def test_scrape_gab_channel(controller, channel_kwargs):
|
|
|
|
channels = [Channel(**channel_kwargs['gab'])]
|
|
controller.register_scraper(GabScraper())
|
|
controller.scrape_channels(channels)
|