Ruby - Testing with RSpec and Minitest
What is wrong with this Ruby test code snippet?
require 'minitest/autorun'
class TestMath < Minitest::Test
def test_multiply
assert_equal 20, 4 * 5
