Ruby - Testing with RSpec and Minitest
What will be the output of the following code?
let(:number) { rand(10) }
before { @num = number }
it 'checks number' do
expect(@num).to eq(number)
end