Sha256: 4f134adec2fb3a8abbe4eb92712ab613b251053094df35e10fccfa8ad2659b79
Contents?: true
Size: 1.72 KB
Versions: 3
Compression:
Stored size: 1.72 KB
Contents
describe Ppl::Command::Ls do before(:each) do @command = Ppl::Command::Ls.new @input = Ppl::Application::Input.new @output = double(Ppl::Application::Output) @storage = double(Ppl::Adapter::Storage) @format = double(Ppl::Format::AddressBook) @custom = double(Ppl::Format::Custom) @address_book = double(Ppl::Entity::AddressBook) @command.custom_format = @custom @command.default_format = @format @command.storage = @storage end describe "#name" do it "should be 'ls'" do expect(@command.name).to eq "ls" end end describe "#execute" do before(:each) do expect(@storage).to receive(:load_address_book).and_return(@address_book) end after(:each) do @command.execute(@input, @output) end it "should show the list of contacts in the address book" do expect(@format).to receive(:process).and_return("list of contacts") expect(@output).to receive(:line).with("list of contacts") end it "should let the user specify a preset pretty format" do @input.options[:pretty] = "test" expect(@address_book).to receive(:contacts).and_return([1]) expect(@custom).to receive(:use_preset).with("test") expect(@custom).to receive(:process).and_return("list of contacts") expect(@output).to receive(:line).with("list of contacts") end it "should let the user specify a custom format" do @input.options[:format] = "%n" expect(@address_book).to receive(:contacts).and_return([1]) expect(@custom).to receive(:format=).with("%n") expect(@custom).to receive(:process).and_return("list of contacts") expect(@output).to receive(:line).with("list of contacts") end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ppl-4.0.5 | spec/ppl/command/ls_spec.rb |
ppl-4.0.3 | spec/ppl/command/ls_spec.rb |
ppl-4.0.2 | spec/ppl/command/ls_spec.rb |