summaryrefslogtreecommitdiffstats
path: root/tests_new/integration/roles/prepare_tests/tasks/main.yml
diff options
context:
space:
mode:
authorMichael DeHaan <michael@ansibleworks.com>2014-02-14 00:28:29 +0100
committerMichael DeHaan <michael@ansibleworks.com>2014-02-14 00:28:29 +0100
commitc91ceddfac82bcef4b2edc0ee6bfca2271ef892c (patch)
tree8ef57946d4965fbbda88f57bda09d8a463dd046f /tests_new/integration/roles/prepare_tests/tasks/main.yml
parentMerge pull request #6002 from chrishoffman/ec2_validate (diff)
downloadansible-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.yml26
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
+
+