archive
/
actioner
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
actioner/tests/test_scheduler/test_todoist_assigned_issue...

10 lines
325 B
Python

from actioner.scheduler.todoist_assigned_issues import REPOS
from actioner.utils import get_todoist_project_from_repo
from tests import BaseTestCase
class ConfigurationTestCase(BaseTestCase):
def test_repo_is_known(self):
for repo in REPOS:
self.assertIsNotNone(get_todoist_project_from_repo(repo))