summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/win_snmp/tasks/output_only.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/win_snmp/tasks/output_only.yml')
-rw-r--r--test/integration/targets/win_snmp/tasks/output_only.yml24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/integration/targets/win_snmp/tasks/output_only.yml b/test/integration/targets/win_snmp/tasks/output_only.yml
deleted file mode 100644
index 7115da45d2..0000000000
--- a/test/integration/targets/win_snmp/tasks/output_only.yml
+++ /dev/null
@@ -1,24 +0,0 @@
----
- # Already tested
- - name: Add an SNMP manager and an SNMP community
- win_snmp:
- action: add
- community_strings:
- - snmp-cleanup
- permitted_managers:
- - 192.168.1.1
-
- - name: Run without options
- register: snmp_no_options
- win_snmp:
-
- - name: Assert no changes occurred when no options provided
- assert:
- that:
- - not snmp_no_options.changed
-
- - name: Assert community strings and permitted managers are correctly returned
- assert:
- that:
- - "'snmp-cleanup' in snmp_no_options.community_strings"
- - "'192.168.1.1' in snmp_no_options.permitted_managers"