Sha256: a8a67dedd844cec67fa9acac6968b01e882d98cc6cf18500ca485588230fec54

Contents?: true

Size: 874 Bytes

Versions: 5

Compression:

Stored size: 874 Bytes

Contents

describe Ppl::Format::AddressBook::Nicknames do

  before(:each) do
    @format       = Ppl::Format::AddressBook::Nicknames.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:",
        :nicknames => "",
      })
      @format.process(@address_book)
    end

    it "should show a nickname if it's available" do
      @contact.nicknames.push("Stupid")
      @table.should_receive(:add_row).with({
        :id        => "test:",
        :nicknames => "Stupid",
      })
      @format.process(@address_book)
    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ppl-1.14.1 spec/ppl/format/address_book/nicknames_spec.rb
ppl-1.14.0 spec/ppl/format/address_book/nicknames_spec.rb
ppl-1.13.0 spec/ppl/format/address_book/nicknames_spec.rb
ppl-1.12.0 spec/ppl/format/address_book/nicknames_spec.rb
ppl-1.11.0 spec/ppl/format/address_book/nicknames_spec.rb