summaryrefslogtreecommitdiff
path: root/tests/white-box/soledad.rb
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2014-11-23 18:02:42 -0500
committerMicah Anderson <micah@leap.se>2014-11-23 18:02:42 -0500
commit9da4a1e64b1a0238dbf25f153112093232a960bb (patch)
treea2478678465fa8a7c43d018d1b9a79ba90d57bda /tests/white-box/soledad.rb
parentfbfc88d8e4ff032fd8155e264ba75668b426fdb2 (diff)
parent6200be6fbf1f05665158e9ce8b218433f2440240 (diff)
Merge remote-tracking branch 'elijah/feature/soledadtest' into develop
Diffstat (limited to 'tests/white-box/soledad.rb')
-rw-r--r--tests/white-box/soledad.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/white-box/soledad.rb b/tests/white-box/soledad.rb
new file mode 100644
index 00000000..5a13e4a6
--- /dev/null
+++ b/tests/white-box/soledad.rb
@@ -0,0 +1,17 @@
+raise SkipTest unless service?(:soledad)
+
+require 'json'
+
+class Soledad < LeapTest
+ depends_on "Network"
+ depends_on "CouchDB" if service?(:couchdb)
+
+ def setup
+ end
+
+ def test_00_Is_Soledad_running?
+ assert_running 'soledad'
+ pass
+ end
+
+end