Last active
January 19, 2016 21:02
-
-
Save kyletolle/2e3214ef155e141c7f23 to your computer and use it in GitHub Desktop.
RSpec alias_method matcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# spec/support/matchers/alias_method_matcher.rb | |
# RSpec matcher for alias_method. | |
# Orignal idea borrowed from: https://gist.github.com/1950961 | |
# Usage: | |
# | |
# describe Boomerang do | |
# let(:boomerang) { described_class.new } | |
# let(:subject} { boomerang } | |
# it { is_expected.to alias_method(:in_flight?).to(:in_air?) } | |
# end | |
RSpec::Matchers.define :alias_method do |alias_method| | |
match do |subject| | |
begin | |
subject.send(alias_method) | |
rescue NoMethodError | |
raise "expected alias_method from #{alias_method} to #{@original_method} but #{alias_method} is not defined" | |
end | |
expect(subject.method(alias_method)).to eq(subject.method(@original_method)) | |
end | |
description do | |
"RSpec matcher for alias_method" | |
end | |
failure_message do |text| | |
"expected alias_method from #{alias_method} to #{@original_method}" | |
end | |
failure_message_when_negated do |text| | |
"do not expected alias_method from #{alias_method} to #{@original_method}" | |
end | |
chain(:to) { |original_method| @original_method = original_method } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment