blob: 5a2d1d33e821afa5cd0b2799770ac757edd1d39f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|