Sha256: 27b9947af11a8451cdf2c2b9152f1eebe44a19cc9bdd7f9b02a31315faa4a130
Contents?: true
Size: 285 Bytes
Versions: 7
Compression:
Stored size: 285 Bytes
Contents
RSpec::Matchers.define :be_running do match do |actual| ret = ssh_exec(RSpec.configuration.host, commands.check_running(actual)) if ret[:exit_code] == 1 ret = ssh_exec(RSpec.configuration.host, commands.check_process(actual)) end ret[:exit_code] == 0 end end
Version data entries
7 entries across 7 versions & 1 rubygems