Sha256: ad13fff199ae884d5b5e062dca6dcfea0da457802b358d6c620823c95428afaf

Contents?: true

Size: 907 Bytes

Versions: 18

Compression:

Stored size: 907 Bytes

Contents

describe Ppl::Format::AddressBook::Organizations do

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

  describe "#process" do

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

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

  end

end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
ppl-1.8.0 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.7.0 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.6.0 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.5.3 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.5.2 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.5.1 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.5.0 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.4.1 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.3.0 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.2.0 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.1.0 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.0.6 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.0.5 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.0.4 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.0.3 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.0.1 spec/ppl/format/address_book/organizations_spec.rb
ppl-1.0.0 spec/ppl/format/address_book/organizations_spec.rb
ppl-0.9.0 spec/ppl/format/address_book/organizations_spec.rb