aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/misc_test.rb
blob: cfd54c0ad0343f0c3aeb712cc4ba726a60575d55 (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/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