Closed d4be4st closed 7 years ago
The problem was that @input.echo? would return true, and so @input.echo = true in ensure would repeat all lines henceforth.
@input.echo?
@input.echo = true
ensure
Thanks :heart:
Coverage decreased (-0.003%) to 94.914% when pulling 1a9d4a8987db7db726f4bf2db8873c91cf3e1c5d on d4be4st:master into 456c8882fd26a6bfc0812d6abb53dceecb6da44b on piotrmurach:master.
The problem was that
@input.echo?
would return true, and so@input.echo = true
inensure
would repeat all lines henceforth.