mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-13 11:49:11 -07:00
Fix eapi tests to use become (#40838)
* Return the expected prompt character based on become status * Update eos_banner tests for eapi * Update eos_config tests for eapi * Update eos_facts tests for eapi * Update eos_interface tests for eapi * Update eos_l3_interface tests for eapi * Update eos_lldp tests for eapi * Update eos_logging tests for eapi * Update eos_smoke tests for eapi * Update eos_system tests for eapi
This commit is contained in:
parent
669949e6a3
commit
20f93816d6
59 changed files with 217 additions and 490 deletions
|
@ -45,8 +45,11 @@ class HttpApi:
|
|||
return results
|
||||
|
||||
def get_prompt(self):
|
||||
# Hack to keep @enable_mode working
|
||||
return '#'
|
||||
# Fake a prompt for @enable_mode
|
||||
if self._become:
|
||||
return '#'
|
||||
else:
|
||||
return '>'
|
||||
|
||||
def set_become(self, play_context):
|
||||
self._become = play_context.become
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue