Sha256: 0aef014b0e66cc0e9fdc3ddfdc23125b1e782760eb6d6adf7c02970ef1aebe64
Contents?: true
Size: 455 Bytes
Versions: 91
Compression:
Stored size: 455 Bytes
Contents
RSpec::Matchers.define :have_site_application do |app| match do |subject| if subject.class.name == 'Serverspec::Type::IisWebsite' subject.has_site_application?(app, @pool, @physical_path) else className = subject.class.name raise "not supported class #{className}" end end chain :with_pool do |pool| @pool = pool end chain :with_physical_path do |physical_path| @physical_path = physical_path end end
Version data entries
91 entries across 91 versions & 4 rubygems