summaryrefslogtreecommitdiff
path: root/vendor/plugins/paperclip/test/processor_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/plugins/paperclip/test/processor_test.rb')
-rw-r--r--vendor/plugins/paperclip/test/processor_test.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/vendor/plugins/paperclip/test/processor_test.rb b/vendor/plugins/paperclip/test/processor_test.rb
deleted file mode 100644
index a05f0a9..0000000
--- a/vendor/plugins/paperclip/test/processor_test.rb
+++ /dev/null
@@ -1,10 +0,0 @@
1require 'test/helper'
2
3class ProcessorTest < Test::Unit::TestCase
4 should "instantiate and call #make when sent #make to the class" do
5 processor = mock
6 processor.expects(:make).with()
7 Paperclip::Processor.expects(:new).with(:one, :two, :three).returns(processor)
8 Paperclip::Processor.make(:one, :two, :three)
9 end
10end