RSpec 1.x matcher for delegations
The attached RSpec matcher allows for comfortably testing delegation.
Examples
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
Credits go to txus Show archive.org snapshot . See the attached link for an RSpec 2+ version.