Sha256: 3c4659ba7acee38ffca7d90e7ebbaa8ae2e9e2faa8408b9b9709d7e6cbeae255
Contents?: true
Size: 720 Bytes
Versions: 42
Compression:
Stored size: 720 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::FreeBSD describe port(80) do it { should be_listening } its(:command) { should eq 'sockstat -46l -p 80 | 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
42 entries across 42 versions & 1 rubygems