Sha256: 5b1cab246adfcfe6cf2efa90d2e015e80562a590c66f732020882079e5574f0d

Contents?: true

Size: 544 Bytes

Versions: 91

Compression:

Stored size: 544 Bytes

Contents

RSpec::Matchers.define :have_site_bindings do |port|
  match do |subject|
    if subject.class.name == 'Serverspec::Type::IisWebsite'
      subject.has_site_bindings?(port, @protocol, @ipaddress, @host_header)
    else
      className = subject.class.name
      raise "not supported class #{className}"
    end
  end

  chain :with_protocol do |protocol|
    @protocol = protocol
  end

  chain :with_ipaddress do |ipaddress|
    @ipaddress = ipaddress
  end

  chain :with_host_header do |host_header|
    @host_header = host_header
  end
end

Version data entries

91 entries across 91 versions & 4 rubygems

Version Path
serverspec-2.38.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.37.2 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.37.1 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.37.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.36.1 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.36.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.35.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.34.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.33.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.32.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.31.1 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.31.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.30.1 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.30.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.29.2 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.29.1 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.29.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.28.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.27.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.26.0 lib/serverspec/matcher/have_site_bindings.rb