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-1.6.0 lib/awspec/matcher/have_origin.rb
awspec-1.5.4 lib/awspec/matcher/have_origin.rb
awspec-1.5.3 lib/awspec/matcher/have_origin.rb
awspec-1.5.2 lib/awspec/matcher/have_origin.rb
awspec-1.5.1 lib/awspec/matcher/have_origin.rb
awspec-1.5.0 lib/awspec/matcher/have_origin.rb
awspec-1.4.3 lib/awspec/matcher/have_origin.rb
awspec-1.4.2 lib/awspec/matcher/have_origin.rb
awspec-1.4.1 lib/awspec/matcher/have_origin.rb
awspec-1.4.0 lib/awspec/matcher/have_origin.rb
awspec-1.3.1 lib/awspec/matcher/have_origin.rb
awspec-1.3.0 lib/awspec/matcher/have_origin.rb
awspec-1.2.0 lib/awspec/matcher/have_origin.rb
awspec-1.1.0 lib/awspec/matcher/have_origin.rb
awspec-1.0.0 lib/awspec/matcher/have_origin.rb
awspec-1.0.0.rc lib/awspec/matcher/have_origin.rb
awspec-0.88.2 lib/awspec/matcher/have_origin.rb
awspec-0.88.1 lib/awspec/matcher/have_origin.rb
awspec-0.88.0 lib/awspec/matcher/have_origin.rb
awspec-0.87.1 lib/awspec/matcher/have_origin.rb