Sha256: d970998611ac0d9b1dd2db50156bbee722f62008e5c471f65d5a12e50c1a177d

Contents?: true

Size: 1.26 KB

Versions: 3

Compression:

Stored size: 1.26 KB

Contents

describe Ppl::Format::AddressBook::PhoneNumbers do
  describe "#initialize" do
    it "should pass the colors through to the table" do
      colors = {"id" => "blue"}
      expect(Ppl::Format::Table).to 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
      expect(@table).to 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")
      expect(@table).to receive(:add_row).with({
        :id            => "test:",
        :phone_numbers => "01234567890",
      })
      @format.process(@address_book)
    end

  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ppl-4.0.5 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-4.0.3 spec/ppl/format/address_book/phone_numbers_spec.rb
ppl-4.0.2 spec/ppl/format/address_book/phone_numbers_spec.rb