Ruby - Testing with RSpec and Minitest
Identify the error in this Ruby test code:
require 'minitest/autorun'
class TestCalc < Minitest::Test
def test_sum
assert_equal 10, 5 + 4
end
end