Sha256: beb4e670ede091a7ee619154a83c6ba4d5806a4d7e9f94c88e71f45298c5b238
Contents?: true
Size: 714 Bytes
Versions: 30
Compression:
Stored size: 714 Bytes
Contents
require 'spec_helper' include Serverspec::Helper::Debian describe port(80) do it { should be_listening } its(:command) { should eq 'netstat -tunl | 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
30 entries across 30 versions & 1 rubygems