Sha256: 754426b8923fa11f15872b8051b739a115880e28b33dd615044eb4a55c845804
Contents?: true
Size: 418 Bytes
Versions: 16
Compression:
Stored size: 418 Bytes
Contents
describe Ppl::Application::Command, "#execute" do before(:each) do @command = Ppl::Application::Command.new end it "should raise not implemented error" do expect{@command.execute(nil, nil)}.to raise_error(NotImplementedError) end it "should accept a storage adapter" do storage = double(Ppl::Adapter::Storage) @command.storage = storage @command.storage.should be storage end end
Version data entries
16 entries across 16 versions & 1 rubygems