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.42.3 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.42.2 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.42.1 lib/serverspec/matcher/have_site_bindings.rb
serverspec-cem-acpt-2.42.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.42.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.8 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.7 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.6 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.5 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.4 lib/serverspec/matcher/have_site_bindings.rb
serverspec-ruby19-2.24.3 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.3 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.2 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.1 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.41.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.40.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.39.2 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.39.1 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.39.0 lib/serverspec/matcher/have_site_bindings.rb
serverspec-2.38.1 lib/serverspec/matcher/have_site_bindings.rb