Ruby - Testing with RSpec and Minitest
Given this Ruby code snippet, what will be the test output?
require 'minitest/autorun'
class StringTest < Minitest::Test
def test_length
assert_equal 4, 'ruby'.length
end
end