mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
dc3d6eb9b4
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@624 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
19 lines
449 B
Ruby
19 lines
449 B
Ruby
require 'test/unit'
|
|
require File.dirname(__FILE__) + '/../lib/active_support/misc'
|
|
|
|
class MiscTest < Test::Unit::TestCase
|
|
def test_silence_warnings
|
|
silence_warnings { assert_nil $VERBOSE }
|
|
assert_equal 1234, silence_warnings { 1234 }
|
|
end
|
|
|
|
def test_silence_warnings_verbose_invariant
|
|
old_verbose = $VERBOSE
|
|
begin
|
|
silence_warnings { raise }
|
|
flunk
|
|
rescue
|
|
assert_equal old_verbose, $VERBOSE
|
|
end
|
|
end
|
|
end
|