class ActiveSupport::TestCase

def assert_nothing_raised(*args)

end
...
assert_nothing_raised do

Fails if the block raises an exception.
def assert_nothing_raised(*args)
  yield
end