mirror of
https://github.com/balkian/bitter.git
synced 2025-08-29 23:02:21 +00:00
First commit
This commit is contained in:
9
tests/test_crawlers.py
Normal file
9
tests/test_crawlers.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from bitter.crawlers import TwitterWorker, TwitterQueue
|
||||
|
||||
class TestWorker(TestCase):
|
||||
|
||||
|
||||
def test_worker(self):
|
||||
w = TwitterWorker()
|
6
tests/test_models.py
Normal file
6
tests/test_models.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from unittests import TestCase
|
||||
|
||||
class TestModels(TestCase):
|
||||
|
||||
def test_worker(self):
|
||||
assert True
|
7
tests/test_utils.py
Normal file
7
tests/test_utils.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from unittest import TestCase
|
||||
|
||||
class TestUtils(TestCase):
|
||||
|
||||
def test_get_user(self):
|
||||
assert True
|
||||
|
Reference in New Issue
Block a user