summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_pim
diff options
context:
space:
mode:
authorNathaniel Case <this.is@nathanielca.se>2018-07-02 09:43:51 -0400
committerGitHub <noreply@github.com>2018-07-02 09:43:51 -0400
commita1971259540ccc1be3df811252f5b832e7af2d87 (patch)
treedeac7c985fecc5fd1567f604308d211df68e7db2 /test/integration/targets/nxos_pim
parent1659951710a7a8468a65e76e31006dc972b4468a (diff)
downloadansible-a1971259540ccc1be3df811252f5b832e7af2d87.tar.gz
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
Diffstat (limited to 'test/integration/targets/nxos_pim')
-rw-r--r--test/integration/targets/nxos_pim/tests/common/sanity.yaml5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/integration/targets/nxos_pim/tests/common/sanity.yaml b/test/integration/targets/nxos_pim/tests/common/sanity.yaml
index 52f1125290..e4d25de5d5 100644
--- a/test/integration/targets/nxos_pim/tests/common/sanity.yaml
+++ b/test/integration/targets/nxos_pim/tests/common/sanity.yaml
@@ -6,16 +6,19 @@
- name: "Setup: Disable feature PIM"
nxos_feature: &disable_feature
feature: pim
+ provider: "{{ connection }}"
state: disabled
- name: "Setup: Enable feature PIM"
nxos_feature:
feature: pim
+ provider: "{{ connection }}"
state: enabled
- name: "Setup: Configure ssm_range none"
nxos_pim: &none
ssm_range: "none"
+ provider: "{{ connection }}"
- block:
- name: Configure ssm_range
@@ -23,6 +26,7 @@
ssm_range:
- "239.128.1.0/24"
- "224.0.0.0/8"
+ provider: "{{ connection }}"
register: result
- assert: &true
@@ -40,6 +44,7 @@
- name: Configure ssm_range default
nxos_pim: &conf_default
ssm_range: "default"
+ provider: "{{ connection }}"
register: result
- assert: *true