spec/ppl/format/address_book/urls_spec.rb in ppl-4.0.1 vs spec/ppl/format/address_book/urls_spec.rb in ppl-4.0.2
- old
+ new
@@ -1,10 +1,10 @@
describe Ppl::Format::AddressBook::Urls 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, :urls], colors)
+ expect(Ppl::Format::Table).to receive(:new).with([:id, :urls], colors)
format = Ppl::Format::AddressBook::Urls.new(colors)
end
end
end
@@ -23,19 +23,19 @@
end
describe "#process" do
it "should at least show the contact's id" do
- @table.should_receive(:add_row).with({
+ expect(@table).to receive(:add_row).with({
:id => "test:",
:urls => "",
})
@format.process(@address_book)
end
it "should show a URL if it's available" do
@contact.urls.push "http://example.org/~jdoe"
- @table.should_receive(:add_row).with({
+ expect(@table).to receive(:add_row).with({
:id => "test:",
:urls => "http://example.org/~jdoe",
})
@format.process(@address_book)
end