Fix eos_config integration test failure (#39662) (#39784)

Enable become for eos_config check_mode test cases
(cherry picked from commit b20b964c4a)
pull/39735/merge
Ganesh Nalawade 8 years ago committed by GitHub
parent b711bde6b2
commit 20e8766840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,6 +6,8 @@
lines:
- ip address 119.31.1.1 255.255.255.256
parents: interface Loopback911
provider: "{{ cli }}"
become: yes
check_mode: 1
environment:
ANSIBLE_EOS_USE_SESSIONS: 1
@ -23,6 +25,8 @@
before:
- "no ip access-list test"
src: basic/cmds.j2
provider: "{{ cli }}"
become: yes
check_mode: yes
register: config
@ -31,6 +35,7 @@
commands:
- show configuration sessions | json
provider: "{{ cli }}"
become: yes
register: result
- assert:
@ -42,6 +47,8 @@
lines:
- ip address 119.31.1.1 255.255.255.256
parents: interface Loopback911
provider: "{{ cli }}"
become: yes
check_mode: 1
environment:
ANSIBLE_EOS_USE_SESSIONS: 0
@ -57,6 +64,8 @@
lines:
- ip address 119.31.1.1 255.255.255.255
parents: interface Loopback911
provider: "{{ cli }}"
become: yes
check_mode: yes
register: result
environment:

Loading…
Cancel
Save