ansible/test/integration/targets/eos_vlans/tests/cli/idempotent.yaml
Paul Belanger af3603f9ee Revert "Allow httpapi for resource modules (#62843)" (#66483)
While this does properly pass our testing for ansible/ansible devel
branch, it is currently breaking our collection testing for 2.10.

Specifically, this would mean ansible.netcommon would need to directly
import arista.eos or cisco.nxos collections, causing a circular dependency.

This reverts commit e266e5f8b6.
2020-01-15 12:25:38 -05:00

21 lines
491 B
YAML

---
- eos_facts:
gather_network_resources: vlans
become: yes
- name: Ensures that facts are idempotent through replace
eos_vlans:
config: "{{ ansible_facts.network_resources.vlans }}"
state: replaced
register: result
become: yes
- eos_facts:
gather_network_resources: vlans
become: yes
- assert:
that:
- "result.changed == False"
- "result.commands == []"
- "ansible_facts.network_resources.vlans|symmetric_difference(result.before) == []"