Sha256: 003934dbfa3acac43998b72dce78879b89724f71b7ab5bb17727eafbce090d36

Contents?: true

Size: 416 Bytes

Versions: 191

Compression:

Stored size: 416 Bytes

Contents

RSpec::Matchers.define :be_allowed do |port|
  match do |type|
    type.allowed?(port, @protocol, @cidr, @rule_number)
  end

  chain :protocol do |protocol|
    @protocol = protocol
  end

  chain :for do |cidr|
    @cidr = cidr
  end

  chain :target do |cidr|
    @cidr = cidr
  end

  chain :source do |cidr|
    @cidr = cidr
  end

  chain :rule_number do |rule_number|
    @rule_number = rule_number
  end
end

Version data entries

191 entries across 191 versions & 4 rubygems

Version Path
awspec-0.79.1 lib/awspec/matcher/be_allowed.rb
awspec-0.79.0 lib/awspec/matcher/be_allowed.rb
awspec-0.78.1 lib/awspec/matcher/be_allowed.rb
awspec-0.77.1 lib/awspec/matcher/be_allowed.rb
awspec-0.77.0 lib/awspec/matcher/be_allowed.rb
awspec-0.76.1 lib/awspec/matcher/be_allowed.rb
awspec-0.76.0 lib/awspec/matcher/be_allowed.rb
awspec-0.75.2 lib/awspec/matcher/be_allowed.rb
awspec-0.75.1 lib/awspec/matcher/be_allowed.rb
awspec-0.75.0 lib/awspec/matcher/be_allowed.rb
awspec-0.74.1 lib/awspec/matcher/be_allowed.rb
awspec-0.74.0 lib/awspec/matcher/be_allowed.rb
awspec-0.73.2 lib/awspec/matcher/be_allowed.rb
awspec-0.73.1 lib/awspec/matcher/be_allowed.rb
awspec-0.73.0 lib/awspec/matcher/be_allowed.rb
awspec-0.72.0 lib/awspec/matcher/be_allowed.rb
awspec-0.71.0 lib/awspec/matcher/be_allowed.rb
awspec-0.70.0 lib/awspec/matcher/be_allowed.rb
awspec-0.69.1 lib/awspec/matcher/be_allowed.rb
awspec-0.69.0 lib/awspec/matcher/be_allowed.rb