Commit fe706284 by Ryan Bigg

Merge pull request #156 from lime/rspec-deprecations

Fix RSpec 3.x deprecations
parents ca58b27f 40b7af58
...@@ -4,6 +4,10 @@ require 'rspec/expectations' ...@@ -4,6 +4,10 @@ require 'rspec/expectations'
RSpec::Matchers.define :act_as_paranoid do RSpec::Matchers.define :act_as_paranoid do
match { |subject| subject.class.ancestors.include?(Paranoia) } match { |subject| subject.class.ancestors.include?(Paranoia) }
failure_message_for_should { "#{subject.class} should use `acts_as_paranoid`" } failure_message { "expected #{subject.class} to use `acts_as_paranoid`" }
failure_message_for_should_not { "#{subject.class} should not use `acts_as_paranoid`" } failure_message_when_negated { "expected #{subject.class} not to use `acts_as_paranoid`" }
# RSpec 2 compatibility:
alias_method :failure_message_for_should, :failure_message
alias_method :failure_message_for_should_not, :failure_message_when_negated
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment