Ruby - Testing with RSpec and Minitest
What will be the output when running this Minitest code?
require 'minitest/autorun'
class TestMath < Minitest::Test
def test_sum
assert_equal 5, 2 + 3
end
end