mirror of
https://github.com/github/rails.git
synced 2026-02-12 15:14:55 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@624 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
20 lines
449 B
Ruby
20 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
|