Sha256: 5a089aed2c173c8d09671b540bf551129922bcfae6819bbd51d59b17c2ac5bd0

Contents?: true

Size: 588 Bytes

Versions: 167

Compression:

Stored size: 588 Bytes

Contents

RSpec::Matchers.define :be_allowed_action do |action_name|
  match do |type|
    results = type.select_policy_evaluation_results(type.resource_via_client[:arn],
                                                    action_name,
                                                    @resource_arn,
                                                    @context_entries)
    results.find do |result|
      result.eval_decision == 'allowed'
    end
  end

  chain :resource_arn do |arn|
    @resource_arn = arn
  end

  chain :context_entries do |context|
    @context_entries = context
  end
end

Version data entries

167 entries across 167 versions & 4 rubygems

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