2018-07-18 10:42:20 +02:00
|
|
|
# Copyright (c) 2018, Yanis Guenane <yanis+ansible@guenane.org>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
---
|
|
|
|
- name: test gather vultr region facts in check mode
|
2018-08-13 10:21:50 +02:00
|
|
|
vultr_region_facts:
|
2018-07-18 10:42:20 +02:00
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
- name: verify test gather vultr region facts in check mode
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ansible_facts.vultr_region_facts|selectattr('name','equalto','Atlanta') | list | count == 1
|
|
|
|
|
|
|
|
- name: test gather vultr region facts
|
2018-08-13 10:21:50 +02:00
|
|
|
vultr_region_facts:
|
2018-07-18 10:42:20 +02:00
|
|
|
|
|
|
|
- name: verify test gather vultr region facts
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ansible_facts.vultr_region_facts|selectattr('name','equalto','Atlanta') | list | count == 1
|