mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Remove provider from ios integration test (#31037)
* Remove provider from each task as it is not required. * Add `authorize: yes` whereever required
This commit is contained in:
parent
2b0e52b15c
commit
65ab37cbd3
37 changed files with 63 additions and 132 deletions
|
@ -4,24 +4,28 @@
|
|||
- name: expected successful ping
|
||||
ios_ping: &valid_ip
|
||||
dest: '8.8.8.8'
|
||||
authorize: yes
|
||||
register: esp
|
||||
|
||||
- name: unexpected unsuccessful ping
|
||||
ios_ping: &invalid_ip
|
||||
dest: '10.255.255.250'
|
||||
timeout: 45
|
||||
authorize: yes
|
||||
register: uup
|
||||
|
||||
- name: unexpected successful ping
|
||||
ios_ping:
|
||||
<<: *valid_ip
|
||||
state: 'absent'
|
||||
authorize: yes
|
||||
register: usp
|
||||
|
||||
- name: expected unsuccessful ping
|
||||
ios_ping:
|
||||
<<: *invalid_ip
|
||||
state: 'absent'
|
||||
authorize: yes
|
||||
register: eup
|
||||
|
||||
- name: assert
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue