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.68.0 lib/awspec/matcher/have_origin.rb
awspec-0.67.1 lib/awspec/matcher/have_origin.rb
awspec-0.67.0 lib/awspec/matcher/have_origin.rb
awspec-0.66.2 lib/awspec/matcher/have_origin.rb
awspec-0.66.1 lib/awspec/matcher/have_origin.rb
awspec-0.66.0 lib/awspec/matcher/have_origin.rb
awspec-0.65.2 lib/awspec/matcher/have_origin.rb
awspec-0.65.1 lib/awspec/matcher/have_origin.rb
awspec-0.65.0 lib/awspec/matcher/have_origin.rb
awspec-0.64.0 lib/awspec/matcher/have_origin.rb
awspec-0.63.1 lib/awspec/matcher/have_origin.rb
awspec-0.63.0 lib/awspec/matcher/have_origin.rb
awspec-0.62.1 lib/awspec/matcher/have_origin.rb
awspec-0.62.0 lib/awspec/matcher/have_origin.rb
awspec-0.61.1 lib/awspec/matcher/have_origin.rb
awspec-0.61.0 lib/awspec/matcher/have_origin.rb
awspec-0.60.1 lib/awspec/matcher/have_origin.rb
awspec-0.60.0 lib/awspec/matcher/have_origin.rb
awspec-0.59.0 lib/awspec/matcher/have_origin.rb
awspec-0.58.0 lib/awspec/matcher/have_origin.rb