Sha256: 1e5f7eba638054b427cb1638c4b709c7f48605f5ed14e3e3eac7c57640b1ef46
Contents?: true
Size: 394 Bytes
Versions: 33
Compression:
Stored size: 394 Bytes
Contents
RSpec::Matchers.define :be_listening do match do |port| port.listening? @with, @local_address end description do message = 'be listening' message << " on #{@local_address}" if @local_address message << " with #{@with}" if @with message end chain :with do |with| @with = with end chain :on do |local_address| @local_address = local_address end end
Version data entries
33 entries across 33 versions & 2 rubygems