mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
11 lines
336 B
Ruby
11 lines
336 B
Ruby
require 'test/helper'
|
|
|
|
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, :three).returns(processor)
|
|
Paperclip::Processor.make(:one, :two, :three)
|
|
end
|
|
end
|