Sha256: 21e24841102da7202ed9ba7426917315d7967f6c0604a84645eb1a5632e6cc66
Contents?: true
Size: 338 Bytes
Versions: 56
Compression:
Stored size: 338 Bytes
Contents
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
Version data entries
56 entries across 56 versions & 18 rubygems