Commit d61ddd5c by Prem Sichanugrist

Silence ALL the STDERR warnings!

parent 51bb0f9f
......@@ -24,7 +24,9 @@ module Paperclip
file_path = file.respond_to?(:path) ? file.path : file
raise(Errors::NotIdentifiedByImageMagickError.new("Cannot find the geometry of a file with a blank name")) if file_path.blank?
geometry = begin
Paperclip.run("identify", "-format %wx%h :file", :file => "#{file_path}[0]")
silence_stream(STDERR) do
Paperclip.run("identify", "-format %wx%h :file", :file => "#{file_path}[0]")
end
rescue Cocaine::ExitStatusError
""
rescue Cocaine::CommandNotFoundError => e
......
......@@ -44,7 +44,6 @@ module Paperclip
@current_format = File.extname(@file.path)
@basename = File.basename(@file.path, @current_format)
end
# Returns true if the +target_geometry+ is meant to crop.
......
......@@ -28,13 +28,6 @@ end
ROOT = Pathname(File.expand_path(File.join(File.dirname(__FILE__), '..')))
def silence_warnings
old_verbose, $VERBOSE = $VERBOSE, nil
yield
ensure
$VERBOSE = old_verbose
end
class Test::Unit::TestCase
def setup
silence_warnings do
......
......@@ -40,12 +40,16 @@ class IntegrationTest < Test::Unit::TestCase
should "not raise an error" do
assert_nothing_raised do
@dummy.avatar.reprocess!
silence_stream(STDERR) do
@dummy.avatar.reprocess!
end
end
end
should "return false" do
assert ! @dummy.avatar.reprocess!
silence_stream(STDERR) do
assert !@dummy.avatar.reprocess!
end
end
teardown { File.chmod(0644, @dummy.avatar.path) }
......
......@@ -78,7 +78,9 @@ class ThumbnailTest < Test::Unit::TestCase
begin
ENV['PATH'] = ''
assert_raises(Paperclip::Errors::CommandNotFoundError) do
@thumb.make
silence_stream(STDERR) do
@thumb.make
end
end
ensure
ENV['PATH'] = old_path
......@@ -155,7 +157,9 @@ class ThumbnailTest < Test::Unit::TestCase
should "error when trying to create the thumbnail" do
assert_raises(Paperclip::Error) do
@thumb.make
silence_stream(STDERR) do
@thumb.make
end
end
end
end
......@@ -195,7 +199,9 @@ class ThumbnailTest < Test::Unit::TestCase
should "error when trying to create the thumbnail" do
assert_raises(Paperclip::Error) do
@thumb.make
silence_stream(STDERR) do
@thumb.make
end
end
end
......@@ -204,7 +210,9 @@ class ThumbnailTest < Test::Unit::TestCase
begin
ENV['PATH'] = ''
assert_raises(Paperclip::Errors::CommandNotFoundError) do
@thumb.make
silence_stream(STDERR) do
@thumb.make
end
end
ensure
ENV['PATH'] = old_path
......
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