Skip to content

Instantly share code, notes, and snippets.

@scottshea
scottshea / meeting_shared_delegates.rb
Created May 11, 2012 22:17
meetings_shared_delegates
shared_examples_for "Meeting Delegates" do
describe "#organization_name"do
it "should return the organization_name from the delegate" do
subject.organization_name.should == subject.organization.name
end
end
describe "#address" do
it "should return the organization address from the delegate" do
subject.address.should == subject.organization.address