Sha256: 032c0afff4f1177ddf94f2c76c1bd038bf487584697a96496d1199090d094afc

Contents?: true

Size: 970 Bytes

Versions: 7

Compression:

Stored size: 970 Bytes

Contents

describe Ppl::Format::AddressBook::OneLine do

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

    it "should show all the info if it's available" do
      @contact.name = "John Doe"
      @contact.email_addresses.push "jdoe@example.org"
      @table.should_receive(:add_row).with({
        :id    => "test:",
        :name  => "John Doe",
        :email => "<jdoe@example.org>",
      })
      @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/one_line_spec.rb
ppl-1.14.0 spec/ppl/format/address_book/one_line_spec.rb
ppl-1.13.0 spec/ppl/format/address_book/one_line_spec.rb
ppl-1.12.0 spec/ppl/format/address_book/one_line_spec.rb
ppl-1.11.0 spec/ppl/format/address_book/one_line_spec.rb
ppl-1.10.0 spec/ppl/format/address_book/one_line_spec.rb
ppl-1.9.0 spec/ppl/format/address_book/one_line_spec.rb