Sha256: a5b4ec1c2673f6a93b78262aa316a91dca9cb67a57620b6628e48570ac453cd3

Contents?: true

Size: 840 Bytes

Versions: 7

Compression:

Stored size: 840 Bytes

Contents

describe Ppl::Format::AddressBook::Names do

  before(:each) do
    @format       = Ppl::Format::AddressBook::Names.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.contacts.push(@contact)
  end

  describe "#process" do

    it "should at least show the contact's id" do
      @table.should_receive(:add_row).with({
        :id   => "test:",
        :name => nil,
      })
      @format.process(@address_book)
    end

    it "should show the name if it's available" do
      @contact.name = "John Doe"
      @table.should_receive(:add_row).with({
        :id   => "test:",
        :name => "John Doe",
      })
      @format.process(@address_book)
    end

  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ppl-1.14.1 spec/ppl/format/address_book/names_spec.rb
ppl-1.14.0 spec/ppl/format/address_book/names_spec.rb
ppl-1.13.0 spec/ppl/format/address_book/names_spec.rb
ppl-1.12.0 spec/ppl/format/address_book/names_spec.rb
ppl-1.11.0 spec/ppl/format/address_book/names_spec.rb
ppl-1.10.0 spec/ppl/format/address_book/names_spec.rb
ppl-1.9.0 spec/ppl/format/address_book/names_spec.rb