summaryrefslogtreecommitdiff
path: root/vendor/plugins/paperclip/test/processor_test.rb
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-27 22:52:50 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-27 22:52:50 +0200
commit9a19a0494ef51cdac9a78e24d517ca48ba44c453 (patch)
tree8eaae12d8047a40e29d3ea7ff3116b5c869e04bd /vendor/plugins/paperclip/test/processor_test.rb
parent85a01e35274b8d4d4165a7b26bd7986e211246bb (diff)
parent1853082fcd8c067390c246f9daa01a9b47387497 (diff)
Migration from Rails 2.3.5 to Rails 8.1 successful.
Merging dev branch.
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