mirror of https://github.com/ansible/ansible.git
Terraform: Fix unbound local error (#57044)
* Added Unit tests * Fixed regression Fixes: #56934 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/57931/head
parent
9e225fbb1e
commit
cf623fa62f
@ -0,0 +1,20 @@
|
||||
# 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']
|
Loading…
Reference in New Issue