Commit 3f5516ce by Michał Szajbe Committed by Jon Yurek

Fixed tests to pass after changes made commited in e655fbe502fbae2b538922b35c6d2f55b1fee3d1.

(cherry picked from commit 0ce019185d8258a806179be6453aa4d1220803d6)
parent 2fda5b10
...@@ -4,7 +4,7 @@ class ProcessorTest < Test::Unit::TestCase ...@@ -4,7 +4,7 @@ class ProcessorTest < Test::Unit::TestCase
should "instantiate and call #make when sent #make to the class" do should "instantiate and call #make when sent #make to the class" do
processor = mock processor = mock
processor.expects(:make).with() processor.expects(:make).with()
Paperclip::Processor.expects(:new).with(:one, :two).returns(processor) Paperclip::Processor.expects(:new).with(:one, :two, :three).returns(processor)
Paperclip::Processor.make(:one, :two) Paperclip::Processor.make(:one, :two, :three)
end end
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment