added tests
Change-Id: I337664f5862b6f84355d17008140c6ccee8d1c6d
diff --git a/tests/ansible-test b/tests/ansible-test
new file mode 100755
index 0000000..4cf46ec
--- /dev/null
+++ b/tests/ansible-test
@@ -0,0 +1,15 @@
+#!/usr/bin/env ansible-playbook
+---
+- hosts: localhost
+ remote_user: root
+
+ tasks:
+ - name: Install the requirements
+ package:
+ name: "{{item}}"
+ state: latest
+ with_items:
+ - systemd
+
+ - name: Execute the tests
+ shell: systemctl 2>&1 | tee output
\ No newline at end of file