2017-02-26 14:12:57 +01:00
|
|
|
---
|
2017-08-17 10:17:14 +02:00
|
|
|
- debug: msg="START {{ connection.transport }}/invalid.yaml"
|
2017-02-26 14:12:57 +01:00
|
|
|
|
|
|
|
- name: configure invalid feature name
|
|
|
|
nxos_feature:
|
|
|
|
feature: invalid
|
2017-08-17 10:17:14 +02:00
|
|
|
provider: "{{ connection }}"
|
2017-02-26 14:12:57 +01:00
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- result.failed == true
|
|
|
|
|
2017-08-17 10:17:14 +02:00
|
|
|
- debug: msg="END {{ connection.transport }}/invalid.yaml"
|