Sha256: 7d9251eedb5028f119277ab3ed1b12941cb780f28836eee7688360c18cfc0a42
Contents?: true
Size: 746 Bytes
Versions: 20
Compression:
Stored size: 746 Bytes
Contents
require 'spec_helper' RSpec.configure do |c| c.os = 'AIX' end describe port(80) do it { should be_listening } its(:command) { should eq "netstat -an -f inet | awk '{print $4}' | 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
20 entries across 20 versions & 1 rubygems