1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add testcase for first_available_file

This commit is contained in:
Daniel Hokka Zakrisson 2012-11-06 20:57:35 +01:00
parent 00aa584c57
commit 40af8eff14
2 changed files with 5 additions and 2 deletions

View file

@ -130,7 +130,7 @@ class TestPlaybook(unittest.TestCase):
return result
def test_one(self):
pb = os.path.join(self.test_dir, 'playbook1.yml')
pb = 'test/playbook1.yml'
actual = self._run(pb)
# if different, this will output to screen

View file

@ -41,7 +41,10 @@
# not be triggered twice because it's already triggered
- name: test template
action: template src=sample.j2 dest=/tmp/ansible_test_data_template.out
action: template src=$item dest=/tmp/ansible_test_data_template.out
first_available_file:
- nonexistantfile
- sample.j2
notify:
- on change 1
- on change 2