Since we removed the (undocumented) playbook include + with_items code, fix the tests to

compensate.
This commit is contained in:
Michael DeHaan 2013-04-10 15:08:18 -04:00
parent c5d9823467
commit e8085ad40c
2 changed files with 2 additions and 6 deletions

View file

@ -201,7 +201,7 @@ class TestPlaybook(unittest.TestCase):
"localhost": { "localhost": {
"changed": 0, "changed": 0,
"failures": 0, "failures": 0,
"ok": 10, "ok": 6,
"skipped": 0, "skipped": 0,
"unreachable": 0 "unreachable": 0
} }

View file

@ -1,8 +1,4 @@
--- ---
- include: playbook-included.yml variable=foobar - include: playbook-included.yml variable=foobar
- include: playbook-included.yml variable=foofoo - include: playbook-included.yml variable=foofoo
- include: playbook-included.yml variable=$item - include: playbook-included.yml variable=foo
with_items:
- foo
- bar
- baz