Ruby - Testing with RSpec and Minitest
What will be the output when running this RSpec test?
describe 'Math' do
it 'checks addition' do
expect(2 + 2).to eq(4)
end
it 'checks subtraction' do
expect(5 - 3).to eq(1)
end
end