Ruby - Testing with RSpec and Minitest
What will be the output of this RSpec test?
describe 'Number test' do
it 'checks if number is greater than 10' do
expect(15).to be > 10
end
end