Sha256: e57eca3b058775b8dbe6a029ed9ea126ceaac1bde5a62dc568d3409719c33304

Contents?: true

Size: 684 Bytes

Versions: 165

Compression:

Stored size: 684 Bytes

Contents

RSpec::Matchers.define :have_origin do |origin_id|
  match do |cloudfront_distribution|
    cloudfront_distribution.has_origin?(origin_id,
                                        domain_name: @domain_name,
                                        origin_path: @origin_path,
                                        origin_access_identity: @origin_access_identity
                                       )
  end

  chain :domain_name do |domain_name|
    @domain_name = domain_name
  end

  chain :origin_path do |origin_path|
    @origin_path = origin_path
  end

  chain :origin_access_identity do |origin_access_identity|
    @origin_access_identity = origin_access_identity
  end
end

Version data entries

165 entries across 165 versions & 4 rubygems

Version Path
awspec-0.87.0 lib/awspec/matcher/have_origin.rb
awspec-0.86.0 lib/awspec/matcher/have_origin.rb
cmonson_2ndwatch_awspec-0.85.4 lib/awspec/matcher/have_origin.rb
awspec-0.85.3 lib/awspec/matcher/have_origin.rb
cmonson_2ndwatch_awspec-0.85.3 lib/awspec/matcher/have_origin.rb
awspec-0.85.2 lib/awspec/matcher/have_origin.rb
awspec-0.85.1 lib/awspec/matcher/have_origin.rb
awspec-0.85.0 lib/awspec/matcher/have_origin.rb
awspec-0.84.1 lib/awspec/matcher/have_origin.rb
awspec-0.84.0 lib/awspec/matcher/have_origin.rb
awspec-0.83.0 lib/awspec/matcher/have_origin.rb
awspec-0.82.3 lib/awspec/matcher/have_origin.rb
awspec-0.82.2 lib/awspec/matcher/have_origin.rb
awspec-0.82.1 lib/awspec/matcher/have_origin.rb
awspec-0.82.0 lib/awspec/matcher/have_origin.rb
awspec-0.81.1 lib/awspec/matcher/have_origin.rb
awspec-0.81.0 lib/awspec/matcher/have_origin.rb
awspec-0.80.1 lib/awspec/matcher/have_origin.rb
awspec-0.80.0 lib/awspec/matcher/have_origin.rb
awspec-0.79.2 lib/awspec/matcher/have_origin.rb