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.
28 lines
960 B
YAML
28 lines
960 B
YAML
5 years ago
|
# Copyright (c) 2018, René Moser <mail@renemoser.net>
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
---
|
||
|
- name: test get vultr account infos in check mode
|
||
|
vultr_account_info:
|
||
|
check_mode: yes
|
||
|
register: result
|
||
|
|
||
|
- name: verify test get vultr account infos in check mode
|
||
|
assert:
|
||
|
that:
|
||
|
- result.vultr_account_info.balance is defined
|
||
|
- result.vultr_account_info.last_payment_amount is defined
|
||
|
- result.vultr_account_info.last_payment_date is defined
|
||
|
- result.vultr_account_info.last_payment_amount is defined
|
||
|
|
||
|
- name: test get vultr account fact
|
||
|
vultr_account_info:
|
||
|
register: result
|
||
|
|
||
|
- name: verify test get vultr account infos
|
||
|
assert:
|
||
|
that:
|
||
|
- result.vultr_account_info.balance is defined
|
||
|
- result.vultr_account_info.last_payment_amount is defined
|
||
|
- result.vultr_account_info.last_payment_date is defined
|
||
|
- result.vultr_account_info.last_payment_amount is defined
|