Ruby - Testing with RSpec and Minitest
What will be the output of this RSpec test snippet?
describe 'Number test' do
it 'checks if number is odd' do
number = 7
expect(number.odd?).to be true
end
end