Files
@ 2d0a09dc0e00
Branch filter:
Location: majic-ansible-roles/roles/backup/tests/test_parameters_optional.py - annotation
2d0a09dc0e00
750 B
text/x-python
MAR-114: Updated task syntax for the common role:
- Added quoting where it makes sense.
- Switched to using expanded syntax (instead of one-liners).
- Updated ordering of arguments in task definitions.
- Added quoting where it makes sense.
- Switched to using expanded syntax (instead of one-liners).
- Updated ordering of arguments in task definitions.
e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 e1dd478473a2 | import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
'.molecule/ansible_inventory').get_hosts('parameters-optional')
def test_backup_patterns_content(File, Sudo):
"""
Tests if content of file containing backup patterns is correct.
"""
with Sudo():
backup_pattern = File('/etc/duply/main/patterns/test')
assert backup_pattern.content == "/etc/hosts\n/etc/ethers\n/var/log"
def test_include_content(File, Sudo):
"""
Tests if content of assembled include file containing backup patterns is
correct.
"""
with Sudo():
include = File('/etc/duply/main/include')
assert include.content == "/etc/hosts\n/etc/ethers\n/var/log"
|