Ruby - Testing with RSpec and Minitest
Given the code below, what will be printed when the test runs?
let(:count) { 0 }
before { count += 1 }
it "increments count" do
puts count
end