mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fbcdf8ba5b
* Mark 'name' parameter as required. Closes https://github.com/ansible/ansible/issues/29785. * Add the `linode-python` dependency for unit tests. * Add unit test for linode name parameter. * Add note about where to find required arguments. Closes https://github.com/ansible/ansible/issues/44696.
13 lines
273 B
Python
13 lines
273 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def api_key(monkeypatch):
|
|
monkeypatch.setenv('LINODE_API_KEY', 'foobar')
|
|
|
|
|
|
@pytest.fixture
|
|
def auth(monkeypatch):
|
|
def patched_test_echo(dummy):
|
|
return []
|
|
monkeypatch.setattr('linode.api.Api.test_echo', patched_test_echo)
|