Skip to content

Instantly share code, notes, and snippets.

@Pamplemousse
Pamplemousse / alias_matcher.rb
Last active October 12, 2015 20:44 — forked from otaviomedeiros/alias_matcher.rb
RSpec matcher for alias_method
# RSpec matcher for alias_method.
# https://gist.github.com/47b56760a1e20e391b0b
# Usage:
#
# describe User do
# it { expect(subject).to alias_from(:username).to(:email) }
# end
RSpec::Matchers.define :alias_from do |alias_method|
match do |subject|