Skip to content

Commit

Permalink
Fixed tests to pass after changes made commited in e655fbe502fbae2b53…
Browse files Browse the repository at this point in the history
…8922b35c6d2f55b1fee3d1.

(cherry picked from commit 0ce019185d8258a806179be6453aa4d1220803d6)
  • Loading branch information
szajbus authored and Jon Yurek committed Feb 8, 2009
1 parent 2fda5b1 commit 3f5516c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/processor_test.rb
Expand Up @@ -4,7 +4,7 @@ class ProcessorTest < Test::Unit::TestCase
should "instantiate and call #make when sent #make to the class" do
processor = mock
processor.expects(:make).with()
Paperclip::Processor.expects(:new).with(:one, :two).returns(processor)
Paperclip::Processor.make(:one, :two)
Paperclip::Processor.expects(:new).with(:one, :two, :three).returns(processor)
Paperclip::Processor.make(:one, :two, :three)
end
end

0 comments on commit 3f5516c

Please sign in to comment.