mirror of
https://github.com/balkian/bitter.git
synced 2024-12-22 16:38:13 +00:00
10 lines
177 B
Python
10 lines
177 B
Python
|
from unittest import TestCase
|
||
|
|
||
|
from bitter.crawlers import TwitterWorker, TwitterQueue
|
||
|
|
||
|
class TestWorker(TestCase):
|
||
|
|
||
|
|
||
|
def test_worker(self):
|
||
|
w = TwitterWorker()
|