Ruby - Testing with RSpec and Minitest
Given the code below, what will be the output when the test runs?
let(:count) { 0 }
before { @count = count + 1 }
it 'increments count' do
expect(@count).to eq(1)
end