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.79.1 lib/awspec/matcher/have_origin.rb
awspec-0.79.0 lib/awspec/matcher/have_origin.rb
awspec-0.78.1 lib/awspec/matcher/have_origin.rb
awspec-0.77.1 lib/awspec/matcher/have_origin.rb
awspec-0.77.0 lib/awspec/matcher/have_origin.rb
awspec-0.76.1 lib/awspec/matcher/have_origin.rb
awspec-0.76.0 lib/awspec/matcher/have_origin.rb
awspec-0.75.2 lib/awspec/matcher/have_origin.rb
awspec-0.75.1 lib/awspec/matcher/have_origin.rb
awspec-0.75.0 lib/awspec/matcher/have_origin.rb
awspec-0.74.1 lib/awspec/matcher/have_origin.rb
awspec-0.74.0 lib/awspec/matcher/have_origin.rb
awspec-0.73.2 lib/awspec/matcher/have_origin.rb
awspec-0.73.1 lib/awspec/matcher/have_origin.rb
awspec-0.73.0 lib/awspec/matcher/have_origin.rb
awspec-0.72.0 lib/awspec/matcher/have_origin.rb
awspec-0.71.0 lib/awspec/matcher/have_origin.rb
awspec-0.70.0 lib/awspec/matcher/have_origin.rb
awspec-0.69.1 lib/awspec/matcher/have_origin.rb
awspec-0.69.0 lib/awspec/matcher/have_origin.rb