diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2014-02-14 00:28:29 +0100 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2014-02-14 00:28:29 +0100 |
commit | c91ceddfac82bcef4b2edc0ee6bfca2271ef892c (patch) | |
tree | 8ef57946d4965fbbda88f57bda09d8a463dd046f /tests_new/integration/roles/prepare_tests/tasks/main.yml | |
parent | Merge pull request #6002 from chrishoffman/ec2_validate (diff) | |
download | ansible-c91ceddfac82bcef4b2edc0ee6bfca2271ef892c.tar.xz ansible-c91ceddfac82bcef4b2edc0ee6bfca2271ef892c.zip |
Add the start of an integration test structure using Ansible playbooks, also added an assert action plugin to make writing those easier.
Diffstat (limited to 'tests_new/integration/roles/prepare_tests/tasks/main.yml')
-rw-r--r-- | tests_new/integration/roles/prepare_tests/tasks/main.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests_new/integration/roles/prepare_tests/tasks/main.yml b/tests_new/integration/roles/prepare_tests/tasks/main.yml new file mode 100644 index 0000000000..7847a7ce6c --- /dev/null +++ b/tests_new/integration/roles/prepare_tests/tasks/main.yml @@ -0,0 +1,26 @@ +# test code for the copy module and action plugin +# (c) 2014, Michael DeHaan <michael.dehaan@gmail.com> + +# This file is part of Ansible +# +# Ansible is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Ansible is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see <http://www.gnu.org/licenses/>. + + +- name: clean out the test directory + file: name={{output_dir|mandatory}} state=absent + +- name: create the test directory + file: name={{output_dir}} state=directory + + |