Ruby - Testing with RSpec and Minitest
What will be the result when running this RSpec test?
describe 'Array' do
it 'checks size' do
expect([1, 2, 3].size).to eq(4)
end
end