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_multiply
assert_equal 15, 3 * 5
end
def test_fail
assert_equal 10, 2 + 2
end
end