mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
543 B
Python
21 lines
543 B
Python
5 years ago
|
# Copyright: (c) 2019, Ansible Project
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
|
||
|
import json
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from ansible.modules.cloud.misc import terraform
|
||
|
from units.modules.utils import set_module_args
|
||
|
|
||
|
|
||
|
def test_terraform_without_argument(capfd):
|
||
|
set_module_args({})
|
||
|
with pytest.raises(SystemExit) as results:
|
||
|
terraform.main()
|
||
|
|
||
|
out, err = capfd.readouterr()
|
||
|
assert not err
|
||
|
assert json.loads(out)['failed']
|
||
|
assert 'project_path' in json.loads(out)['msg']
|