summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-inventory/files
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-inventory/files')
-rw-r--r--test/integration/targets/ansible-inventory/files/invalid_sample.yml7
-rw-r--r--test/integration/targets/ansible-inventory/files/unicode.yml3
-rw-r--r--test/integration/targets/ansible-inventory/files/valid_sample.toml2
-rw-r--r--test/integration/targets/ansible-inventory/files/valid_sample.yml7
4 files changed, 19 insertions, 0 deletions
diff --git a/test/integration/targets/ansible-inventory/files/invalid_sample.yml b/test/integration/targets/ansible-inventory/files/invalid_sample.yml
new file mode 100644
index 0000000..f7bbe0c
--- /dev/null
+++ b/test/integration/targets/ansible-inventory/files/invalid_sample.yml
@@ -0,0 +1,7 @@
+all:
+ children:
+ somegroup:
+ hosts:
+ something:
+ 7.2: bar
+ ungrouped: {}
diff --git a/test/integration/targets/ansible-inventory/files/unicode.yml b/test/integration/targets/ansible-inventory/files/unicode.yml
new file mode 100644
index 0000000..ff95db0
--- /dev/null
+++ b/test/integration/targets/ansible-inventory/files/unicode.yml
@@ -0,0 +1,3 @@
+all:
+ hosts:
+ příbor:
diff --git a/test/integration/targets/ansible-inventory/files/valid_sample.toml b/test/integration/targets/ansible-inventory/files/valid_sample.toml
new file mode 100644
index 0000000..6d83b6f
--- /dev/null
+++ b/test/integration/targets/ansible-inventory/files/valid_sample.toml
@@ -0,0 +1,2 @@
+[somegroup.hosts.something]
+foo = "bar"
diff --git a/test/integration/targets/ansible-inventory/files/valid_sample.yml b/test/integration/targets/ansible-inventory/files/valid_sample.yml
new file mode 100644
index 0000000..477f82f
--- /dev/null
+++ b/test/integration/targets/ansible-inventory/files/valid_sample.yml
@@ -0,0 +1,7 @@
+all:
+ children:
+ somegroup:
+ hosts:
+ something:
+ foo: bar
+ ungrouped: {} \ No newline at end of file