Refactor: extract testing logics to subpackage 'test' +
Add your test as /tests/fooban.py and
amend /tests/__init__.py
```python
from tests.fooban import test as test_fooban
__all__ = ['test_typeahead', ..., 'test_fooban']
```
so you can access the test when importing the module
```python
from tests import *
[...]
result = await test_fooban()
```
Showing
tests/__init__.py
0 → 100644
tests/ghostban.py
0 → 100644
tests/reply_deboosting.py
0 → 100644
util.py
0 → 100644
Please register or sign in to comment