mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix a test and a typo in an example
This commit is contained in:
parent
eefe66f1cc
commit
08b70949c7
2 changed files with 8 additions and 6 deletions
|
@ -53,4 +53,4 @@
|
||||||
action: template src=templates/etc_cron.d_ansible-pull.j2 dest=/etc/cron.d/ansible-pull owner=root group=root mode=0644
|
action: template src=templates/etc_cron.d_ansible-pull.j2 dest=/etc/cron.d/ansible-pull owner=root group=root mode=0644
|
||||||
|
|
||||||
- name: Create logrotate entry for ansible-pull.log
|
- name: Create logrotate entry for ansible-pull.log
|
||||||
action: template src=templates/etc_logrotate.d_ansible-pull.j2 dest=/etc/logrorate.d/ansible-pull owner=root group=root mode=0644
|
action: template src=templates/etc_logrotate.d_ansible-pull.j2 dest=/etc/logrotate.d/ansible-pull owner=root group=root mode=0644
|
||||||
|
|
|
@ -193,8 +193,10 @@ class TestPlaybook(unittest.TestCase):
|
||||||
runner_callbacks=test_callbacks
|
runner_callbacks=test_callbacks
|
||||||
)
|
)
|
||||||
result = playbook.run()
|
result = playbook.run()
|
||||||
self.assertIn('localhost', result)
|
assert 'localhost' in result
|
||||||
self.assertIn('ok', result['localhost'])
|
assert 'ok' in result['localhost']
|
||||||
self.assertEqual(result['localhost']['ok'], 6)
|
assert result['localhost']['ok'] == 6
|
||||||
self.assertIn('failures', result['localhost'])
|
assert 'failures' in result['localhost']
|
||||||
self.assertEqual(result['localhost']['failures'], 0)
|
assert result['localhost']['failures'] == 0
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue