Commit 1ef75b0b by Jon Yurek

Fixed expected default values in tests

parent 2747087c
...@@ -319,13 +319,13 @@ class AttachmentTest < Test::Unit::TestCase ...@@ -319,13 +319,13 @@ class AttachmentTest < Test::Unit::TestCase
setup { @dummy.avatar = @file } setup { @dummy.avatar = @file }
before_should "call #make on all specified processors" do before_should "call #make on all specified processors" do
expected_params = @style_params[:once].merge({:processors => [:thumbnail, :test], :whiny => nil, :convert_options => ""}) expected_params = @style_params[:once].merge({:processors => [:thumbnail, :test], :whiny => true, :convert_options => ""})
Paperclip::Thumbnail.expects(:make).with(@file, expected_params, @dummy.avatar).returns(@file) Paperclip::Thumbnail.expects(:make).with(@file, expected_params, @dummy.avatar).returns(@file)
Paperclip::Test.expects(:make).with(@file, expected_params, @dummy.avatar).returns(@file) Paperclip::Test.expects(:make).with(@file, expected_params, @dummy.avatar).returns(@file)
end end
before_should "call #make with attachment passed as third argument" do before_should "call #make with attachment passed as third argument" do
expected_params = @style_params[:once].merge({:processors => [:thumbnail, :test], :whiny => nil, :convert_options => ""}) expected_params = @style_params[:once].merge({:processors => [:thumbnail, :test], :whiny => true, :convert_options => ""})
Paperclip::Test.expects(:make).with(@file, expected_params, @dummy.avatar).returns(@file) Paperclip::Test.expects(:make).with(@file, expected_params, @dummy.avatar).returns(@file)
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment