todoist_interface/tests/test_gitlab.py

7 lines
183 B
Python
Raw Normal View History

2021-11-06 19:42:04 +01:00
from todoist_interface.gitlab import GitlabAPI
def test_gitlab_init():
2021-11-08 15:50:16 +01:00
gitlab = GitlabAPI("url", "token", "assignee")
2021-11-06 19:42:04 +01:00
assert gitlab.url == "url" and gitlab.token == "token"