Sha256: aaaf160bc4e9ff22b026f78061466e84f77860c64e2cd35fc3ecab0e981aa8ef
Contents?: true
Size: 347 Bytes
Versions: 97
Compression:
Stored size: 347 Bytes
Contents
RSpec::Matchers.define :be_reachable do match do |host| proto = 'tcp' timeout = 5 if @attr port = @attr[:port] proto = @attr[:proto] if @attr[:proto] timeout = @attr[:timeout] if @attr[:timeout] end host.reachable?(port, proto, timeout) end chain :with do |attr| @attr = attr end end
Version data entries
97 entries across 97 versions & 1 rubygems