Sha256: 557115b1f70e8ef089f8e8e58a87d47b2ae76647269a652267e005f69e8de9b1
Contents?: true
Size: 727 Bytes
Versions: 10
Compression:
Stored size: 727 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::Darwin describe port(80) do it { should be_listening } its(:command) { should eq 'lsof -nP -iTCP -sTCP:LISTEN | grep -- :80\\ ' } end describe port('invalid') do it { should_not be_listening } end describe port(80) do it { should be_listening.with("tcp") } its(:command) { should eq 'netstat -tunl | grep -- \\^tcp\\ .\\*:80\\ ' } end describe port(123) do it { should be_listening.with("udp") } its(:command) { should eq 'netstat -tunl | grep -- \\^udp\\ .\\*:123\\ ' } end describe port(80) do it { expect { should be_listening.with('not implemented') }.to raise_error(ArgumentError, %r/\A`be_listening` matcher doesn\'t support/) } end
Version data entries
10 entries across 10 versions & 1 rubygems