horizon tests
diff --git a/tests/pillar/cluster.sls b/tests/pillar/cluster.sls
index e69de29..10baad5 100644
--- a/tests/pillar/cluster.sls
+++ b/tests/pillar/cluster.sls
@@ -0,0 +1,47 @@
+horizon:
+  server:
+    enabled: true
+    version: liberty
+    secret_key: secret
+    wsgi:
+      processes: 3
+      threads: 10
+    bind:
+      address: 127.0.0.1
+      port: 80
+    cache:
+      engine: memcached
+      prefix: 'CACHE_HORIZON'
+      members: 
+      - host: 127.0.0.1
+        port: 11211
+      - host: 127.0.0.1
+        port: 11211
+      - host: 127.0.0.1
+        port: 11211
+    identity:
+      engine: keystone
+      host: 127.0.0.1
+      port: 5000
+      api_version: 2
+haproxy:
+  proxy:
+    listens:
+    - name: horizon
+      type: horizon
+      binds:
+      - address: 127.0.0.1
+        port: 80
+      servers:
+      - name: ctl01
+        host: 127.0.0.1
+        port: 80
+        params: cookie ctl01 check inter 2000 fall 3
+      - name: ctl02
+        host: 127.0.0.1
+        port: 80
+        params: cookie ctl02 check inter 2000 fall 3
+      - name: ctl03
+        host: 127.0.0.1
+        port: 80
+        params: cookie ctl03 check inter 2000 fall 3
\ No newline at end of file
diff --git a/tests/pillar/multi.sls b/tests/pillar/multi.sls
deleted file mode 100644
index e69de29..0000000
--- a/tests/pillar/multi.sls
+++ /dev/null
diff --git a/tests/pillar/single.sls b/tests/pillar/single.sls
index e69de29..235342e 100644
--- a/tests/pillar/single.sls
+++ b/tests/pillar/single.sls
@@ -0,0 +1,25 @@
+horizon:
+  server:
+    enabled: true
+    version: liberty
+    secret_key: secret
+    bind:
+      address: 127.0.0.1
+      port: 80
+    wsgi:
+      processes: 3
+      threads: 10
+    mail:
+      engine: dummy
+    cache:
+      engine: memcached
+      prefix: 'CACHE_HORIZON'
+      members:
+      - host: 127.0.0.1
+        port: 11211
+    identity:
+      engine: keystone
+      port: 5000
+      host: 127.0.0.1
+      encryption: encryption
+      api_version: 2
\ No newline at end of file