# File lib/active_support/test_case.rb, line 43 def self.for_tag(tag) yield if $tags[tag] end
Fails if the block raises an exception.
assert_nothing_raised do ... end
# File lib/active_support/test_case.rb, line 81 def assert_nothing_raised(*args) yield end