1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix eapi basic-login asserts (#23318)

The asserts where not checking the commands sent to the device
This commit is contained in:
Ricardo Carrillo Cruz 2017-04-05 20:37:58 +02:00 committed by GitHub
parent cf30f0f27d
commit 4571ff0b52

View file

@ -25,8 +25,8 @@
- assert: - assert:
that: that:
- "result.changed == true" - "result.changed == true"
- "'this is my login banner' in result.commands" - "result.commands.0.cmd == 'banner login'"
- "'that has a multiline' in result.commands" - "result.commands.0.input == 'this is my login banner\nthat has a multiline\nstring'"
# Ensure sessions contains epoc. Will fail after 18th May 2033 # Ensure sessions contains epoc. Will fail after 18th May 2033
- "'ansible_1' in result.session_name" - "'ansible_1' in result.session_name"