1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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