Ruby - Testing with RSpec and Minitest
What will be the output when running this RSpec test?
describe 'Calculator' do
it 'adds numbers' do
expect(2 + 3).to eq(5)
end
end