blob: ee0f4a96ebd99c27109f5630a158f4cda0d2888e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""
GitLab API: https://docs.gitlab.com/ee/api/statistics.html
"""
def test_get_statistics(gl):
statistics = gl.statistics.get()
assert statistics.snippets.isdigit()
assert statistics.users.isdigit()
assert statistics.groups.isdigit()
assert statistics.projects.isdigit()
|