ansible/test/integration/targets/eos_interfaces/tests/cli/reset_config.yml
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

35 lines
729 B
YAML

---
- name: Reset initial config
cli_config:
config: |
interface Ethernet1
description "Interface 1"
no shutdown
no mtu
speed forced 40gfull
interface Ethernet2
no description
no shutdown
mtu 3000
speed auto
become: yes
- eos_facts:
gather_network_resources: interfaces
become: yes
- set_fact:
expected_config:
- name: Ethernet1
description: Interface 1
speed: 40g
duplex: full
enabled: True
- name: Ethernet2
enabled: True
mtu: "3000"
duplex: auto
- assert:
that:
- "expected_config|difference(ansible_facts.network_resources.interfaces) == []"