Added tests script and sample pillar, Kitchen tests and Travis
diff --git a/tests/pillar/cluster.sls b/tests/pillar/cluster.sls
new file mode 100644
index 0000000..df2b2fd
--- /dev/null
+++ b/tests/pillar/cluster.sls
@@ -0,0 +1,17 @@
+mongodb:
+ server:
+ enabled: true
+ admin:
+ user: admin
+ password: magicunicorn
+ master: mongo01
+ members:
+ - host: 192.168.1.11
+ priority: 2
+ - host: 192.168.1.12
+ - host: 192.168.1.13
+ replica_set: default
+ shared_key: magicunicorn
+linux:
+ system:
+ name: name
diff --git a/tests/pillar/single.sls b/tests/pillar/single.sls
new file mode 100644
index 0000000..3d1e205
--- /dev/null
+++ b/tests/pillar/single.sls
@@ -0,0 +1,20 @@
+mongodb:
+ server:
+ enabled: true
+ bind:
+ address: 0.0.0.0
+ port: 27017
+ admin:
+ username: admin
+ password: magicunicorn
+ database:
+ dbname:
+ enabled: true
+ encoding: 'utf8'
+ users:
+ - name: 'username'
+ password: 'password'
+ceilometer:
+ server:
+ database:
+ password: 'password'