mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
326 B
YAML
16 lines
326 B
YAML
8 years ago
|
---
|
||
7 years ago
|
- debug: msg="START {{ connection.transport }}/invalid.yaml"
|
||
8 years ago
|
|
||
|
- name: configure invalid feature name
|
||
|
nxos_feature:
|
||
|
feature: invalid
|
||
7 years ago
|
provider: "{{ connection }}"
|
||
8 years ago
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- result.failed == true
|
||
|
|
||
7 years ago
|
- debug: msg="END {{ connection.transport }}/invalid.yaml"
|