spec/certmeister/policy/chain_all_spec.rb in certmeister-0.3.2 vs spec/certmeister/policy/chain_all_spec.rb in certmeister-0.4.0
- old
+ new
@@ -4,33 +4,33 @@
require 'certmeister/policy/chain_all'
describe Certmeister::Policy::ChainAll do
- it "must be configured with a list of policys" do
- expected_error = "enumerable collection of policys required"
+ it "must be configured with a list of policies" do
+ expected_error = "enumerable collection of policies required"
expect { Certmeister::Policy::ChainAll.new }.to raise_error(ArgumentError)
expect { Certmeister::Policy::ChainAll.new(Certmeister::Policy::Noop.new) }.to raise_error(ArgumentError, expected_error)
expect { Certmeister::Policy::ChainAll.new([]) }.to raise_error(ArgumentError, expected_error)
end
it "demands a request" do
policy = Certmeister::Policy::ChainAll.new([Certmeister::Policy::Noop.new])
expect { policy.authenticate }.to raise_error(ArgumentError)
end
- it "authenticates a request that all its chained policys authenticate" do
+ it "authenticates a request that all its chained policies authenticate" do
policy = Certmeister::Policy::ChainAll.new([Certmeister::Policy::Noop.new, Certmeister::Policy::Noop.new])
response = policy.authenticate({anything: 'something'})
expect(response).to be_authenticated
end
- it "refuses a request that any one of its chained policys refuses" do
+ it "refuses a request that any one of its chained policies refuses" do
refuse_last = Certmeister::Policy::ChainAll.new([ Certmeister::Policy::Noop.new, Certmeister::Policy::Blackhole.new])
refuse_first = Certmeister::Policy::ChainAll.new([ Certmeister::Policy::Blackhole.new, Certmeister::Policy::Noop.new])
- policys = [refuse_last, refuse_first]
+ policies = [refuse_last, refuse_first]
- policys.each do |policy|
+ policies.each do |policy|
response = policy.authenticate({anything: 'something'})
expect(response).to_not be_authenticated
expect(response.error).to eql "blackholed"
end
end