Skip to content

Instantly share code, notes, and snippets.

View robvitaro's full-sized avatar

Rob Vitaro robvitaro

  • Lehigh Valley, PA
View GitHub Profile
@robvitaro
robvitaro / delegate_matcher.rb
Last active December 17, 2016 08:45 — forked from bparanj/delegate_matcher.rb
RSpec matcher for delegations
# RSpec matcher to spec delegations.
#
# Usage:
#
# describe Post do
# it { should delegate(:name).to(:author).with_prefix } # post.author_name
# it { should delegate(:month).to(:created_at) }
# it { should delegate(:year).to(:created_at) }
# end