Sha256: cbdc170edf2501698743a74c1089720076d509d2e600c276486f46756186880b

Contents?: true

Size: 1.25 KB

Versions: 18

Compression:

Stored size: 1.25 KB

Contents

describe Ppl::Format::AddressBook::PhoneNumbers do
  describe "#initialize" do
    it "should pass the colors through to the table" do
      colors = {"id" => "blue"}
      Ppl::Format::Table.should_receive(:new).with([:id, :phone_numbers], colors)
      format = Ppl::Format::AddressBook::PhoneNumbers.new(colors)
    end
  end
end

describe Ppl::Format::AddressBook::PhoneNumbers do

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

    it "should show the phone number if it's available" do
      @contact.phone_numbers << Ppl::Entity::PhoneNumber.new("01234567890")
      @table.should_receive(:add_row).with({
        :id            => "test:",
        :phone_numbers => "01234567890",
      })
      @format.process(@address_book)
    end

  end

end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
ppl-3.0.1 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-3.0.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.4.1 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.4.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.3.3 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.3.2 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.3.1 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.3.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.2.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.1.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-2.0.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-1.25.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-1.24.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-1.23.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-1.22.2 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-1.22.1 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-1.22.0 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-1.21.0 spec/ppl/format/address_book/phone_numbers_spec.rb