Sha256: 200c28d1e839366a9dced861230cf81600378714415d254313a2307aa32c744b
Contents?: true
Size: 913 Bytes
Versions: 28
Compression:
Stored size: 913 Bytes
Contents
require 'spec_helper' describe Paperclip::Processor do it "instantiates and call #make when sent #make to the class" do processor = mock processor.expects(:make).with() Paperclip::Processor.expects(:new).with(:one, :two, :three).returns(processor) Paperclip::Processor.make(:one, :two, :three) end context "Calling #convert" do it "runs the convert command with Cocaine" do Paperclip.options[:log_command] = false Cocaine::CommandLine.expects(:new).with("convert", "stuff", {}).returns(stub(:run)) Paperclip::Processor.new('filename').convert("stuff") end end context "Calling #identify" do it "runs the identify command with Cocaine" do Paperclip.options[:log_command] = false Cocaine::CommandLine.expects(:new).with("identify", "stuff", {}).returns(stub(:run)) Paperclip::Processor.new('filename').identify("stuff") end end end
Version data entries
28 entries across 26 versions & 6 rubygems