todoist_interface/tests/test_gitlab.py

7 lines
171 B
Python
Raw Normal View History

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