以下のコードで、`number`が何回生成されるでしょうか? ```ruby let(:number) do puts '生成' 42 end it 'テスト1' do expect(number + number).to eq(84) end it 'テスト2' do expect(number).to eq(42) end ```