Sha256: ad13fff199ae884d5b5e062dca6dcfea0da457802b358d6c620823c95428afaf
Contents?: true
Size: 907 Bytes
Versions: 18
Compression:
Stored size: 907 Bytes
Contents
describe Ppl::Format::AddressBook::Organizations do before(:each) do @format = Ppl::Format::AddressBook::Organizations.new @address_book = Ppl::Entity::AddressBook.new @contact = Ppl::Entity::Contact.new @table = double(Ppl::Format::Table) @contact.id = "test" @format.table = @table @address_book.add_contact(@contact) end describe "#process" do it "should at least show the contact's id" do @table.should_receive(:add_row).with({ :id => "test:", :organization => nil, }) @format.process(@address_book) end it "should show the organization if it's available" do @contact.organization = "Example Ltd" @table.should_receive(:add_row).with({ :id => "test:", :organization => "Example Ltd", }) @format.process(@address_book) end end end
Version data entries
18 entries across 18 versions & 1 rubygems