diff options
Diffstat (limited to 'tests/functional/cli/conftest.py')
-rw-r--r-- | tests/functional/cli/conftest.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/functional/cli/conftest.py b/tests/functional/cli/conftest.py deleted file mode 100644 index ba94dcb..0000000 --- a/tests/functional/cli/conftest.py +++ /dev/null @@ -1,21 +0,0 @@ -import pytest - - -@pytest.fixture -def gitlab_cli(script_runner, gitlab_config): - """Wrapper fixture to help make test cases less verbose.""" - - def _gitlab_cli(subcommands): - """ - Return a script_runner.run method that takes a default gitlab - command, and subcommands passed as arguments inside test cases. - """ - command = ["gitlab", "--config-file", gitlab_config] - - for subcommand in subcommands: - # ensure we get strings (e.g from IDs) - command.append(str(subcommand)) - - return script_runner.run(*command) - - return _gitlab_cli |