ansible.posix/tests/unit/plugins/action/fixtures/synchronize/basic/meta.yaml
Дмитрий Озолин 22f0fe0ab3 fix test
2026-02-12 00:57:57 +03:00

18 lines
492 B
YAML

---
fixtures:
taskvars_in: taskvars_in.json
taskvars_out: taskvars_out.json
connection:
transport: ssh
hostvars:
127.0.0.1: {}
::1: {}
localhost: {}
asserts:
- hasattr(SAM._connection, 'ismock')
- SAM._connection.transport == 'local'
- self._play_context.shell == 'sh'
- self.execute_called
- self.final_module_args['_local_rsync_path'] == 'rsync'
- self.final_module_args['src'] == ['/tmp/deleteme']
- self.final_module_args['dest'] == 'root@el6host:/tmp/deleteme'