mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
20 lines
434 B
Ruby
20 lines
434 B
Ruby
|
require 'test/unit'
|
||
|
require File.dirname(__FILE__) + '/../lib/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
|