Add integration test for ansible-modules-core #460

See https://github.com/ansible/ansible-modules-core/pull/460
pull/4420/head
Jesse Buchanan 2014-12-07 14:29:57 -05:00
parent 3b80f63e22
commit 39c488203f
1 changed files with 9 additions and 0 deletions

View File

@ -106,6 +106,15 @@
that:
- "file6_result.changed == true"
- name: touch a hard link
file: src={{output_file}} dest={{output_dir}}/hard.txt state=touch
register: file6_touch_result
- name: verify that the hard link was touched
assert:
that:
- "file6_touch_result.changed == true"
- name: create a directory
file: path={{output_dir}}/foobar state=directory
register: file7_result