mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-05-07 13:53:05 +00:00
refactor to comply with current ansible-lint and sanity guidelines
Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
@@ -1,29 +1,30 @@
|
||||
---
|
||||
task_args:
|
||||
src: /tmp/deleteme
|
||||
dest: /tmp/deleteme
|
||||
src: /tmp/deleteme
|
||||
dest: /tmp/deleteme
|
||||
fixtures:
|
||||
taskvars_in: task_vars_in.json
|
||||
taskvars_out: task_vars_out.json
|
||||
taskvars_in: task_vars_in.json
|
||||
taskvars_out: task_vars_out.json
|
||||
connection:
|
||||
transport: 'ssh'
|
||||
transport: ssh
|
||||
_play_context:
|
||||
remote_addr: '127.0.0.1'
|
||||
remote_user: vagrant
|
||||
remote_addr: 127.0.0.1
|
||||
remote_user: vagrant
|
||||
hostvars:
|
||||
'127.0.0.1': {}
|
||||
'::1': {}
|
||||
'localhost': {}
|
||||
127.0.0.1: {}
|
||||
::1: {}
|
||||
localhost: {}
|
||||
asserts:
|
||||
- "hasattr(SAM._connection, 'ismock')"
|
||||
- "SAM._connection.transport == 'local'"
|
||||
- "self.execute_called"
|
||||
- "self.final_module_args['_local_rsync_path'] == 'rsync'"
|
||||
- "self.final_module_args['dest_port'] == 2202"
|
||||
- "self.final_module_args['src'] == '/tmp/deleteme'"
|
||||
- "self.final_module_args['dest'] == 'vagrant@127.0.0.1:/tmp/deleteme'"
|
||||
- "self._play_context.shell == 'sh'"
|
||||
- "self._play_context.remote_addr == '127.0.0.1'"
|
||||
- "self._play_context.remote_user == 'vagrant'"
|
||||
- "self._play_context.become == False"
|
||||
- "self._play_context.become_user == 'root'"
|
||||
- "self._play_context.password == None"
|
||||
- hasattr(SAM._connection, 'ismock')
|
||||
- SAM._connection.transport == 'local'
|
||||
- self.execute_called
|
||||
- self.final_module_args['_local_rsync_path'] == 'rsync'
|
||||
- self.final_module_args['dest_port'] == 2202
|
||||
- self.final_module_args['src'] == '/tmp/deleteme'
|
||||
- self.final_module_args['dest'] == 'vagrant@127.0.0.1:/tmp/deleteme'
|
||||
- self._play_context.shell == 'sh'
|
||||
- self._play_context.remote_addr == '127.0.0.1'
|
||||
- self._play_context.remote_user == 'vagrant'
|
||||
- self._play_context.become == False
|
||||
- self._play_context.become_user == 'root'
|
||||
- self._play_context.password == None
|
||||
|
||||
Reference in New Issue
Block a user