aboutsummaryrefslogtreecommitdiffstats
path: root/spec/mspec/lib/mspec/helpers/warning.rb
blob: 9e093074e59e3c044bc66ca19c925c4cc8b0f298 (plain)
1
2
3
4
5
6
7
def suppress_warning
  verbose = $VERBOSE
  $VERBOSE = nil
  yield
ensure
  $VERBOSE = verbose
end