blob: 9b1b16d0cd4cf14ffe4a0111357b693b3535e872 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
def test_list_instance_variables(gitlab_cli, gl):
cmd = ["variable", "list"]
ret = gitlab_cli(cmd)
assert ret.success
def test_list_group_variables(gitlab_cli, group):
cmd = ["group-variable", "list", "--group-id", group.id]
ret = gitlab_cli(cmd)
assert ret.success
def test_list_project_variables(gitlab_cli, project):
cmd = ["project-variable", "list", "--project-id", project.id]
ret = gitlab_cli(cmd)
assert ret.success
|