aboutsummaryrefslogtreecommitdiff
path: root/src/tests/controllers/__init__.py
blob: 26922c43f3bbf96f5ea086b8462790e044371516 (plain)
1
2
3
4
5
from tests.controllers.feed import FeedControllerTest
from tests.controllers.article import ArticleControllerTest


__all__ = ['FeedControllerTest', 'ArticleControllerTest']
bgstack15