summaryrefslogtreecommitdiff
path: root/tests/functional/api/test_services.py
blob: 100c0c9e5487e97bf114ea12a54f22eeed345548 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""
GitLab API:
https://docs.gitlab.com/ee/api/integrations.html
"""

import gitlab


def test_services(project):
    service = project.services.get("jira", lazy=True)
    assert isinstance(service, gitlab.v4.objects.ProjectService)