cf623fa62f
* Added Unit tests * Fixed regression Fixes: #56934 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
20 lines
543 B
Python
20 lines
543 B
Python
# 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']
|