From 2177b773c8d460f67582aa7fab1af08647816a79 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 20 Feb 2014 19:11:15 -0500 Subject: Rename tests to test, use old directory name. --- test/integration/inventory | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test/integration/inventory (limited to 'test/integration/inventory') diff --git a/test/integration/inventory b/test/integration/inventory new file mode 100644 index 0000000000..65fc130a23 --- /dev/null +++ b/test/integration/inventory @@ -0,0 +1,27 @@ +[local] +testhost ansible_ssh_host=127.0.0.1 ansible_connection=local +testhost2 ansible_ssh_host=127.0.0.1 ansible_connection=local + +# the following inline declarations are accompanied +# by (preferred) group_vars/ and host_vars/ variables +# and are used in testing of variable precedence + +[arbitrary_parent:children] +local + +[local:vars] +parent_var=6000 +groups_tree_var=5000 + +[arbitrary_parent:vars] +groups_tree_var=4000 +overridden_in_parent=1000 + +[arbitrary_grandparent:children] +arbitrary_parent + +[arbitrary_grandparent:vars] +groups_tree_var=3000 +grandparent_var=2000 +overridden_in_parent=2000 + -- cgit v1.2.1