Sha256: 327ed6bad93dc47c0d03a4ba70bc14c26beb86e6c09e9c358abe1ed5e80c7946
Contents?: true
Size: 655 Bytes
Versions: 5
Compression:
Stored size: 655 Bytes
Contents
require 'spec_helper' include Specinfra::Helper::Cmd set :os, :family => 'windows' describe commands.command_class('port').create do it { should be_an_instance_of(Specinfra::Command::Windows::Base::Port) } end describe port(80) do it { should be_listening } end describe port('invalid') do it { should_not be_listening } end describe port(80) do it { should be_listening.with("tcp") } end describe port(123) do it { should be_listening.with("udp") } 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
5 entries across 5 versions & 1 rubygems