Ruby - Testing with RSpec and Minitest
Identify the error in this Minitest code snippet:
class MyTest < Minitest::Test
def test_check
assert_equal(4, 2 + 2
end
end