cldwalker / debugger

port of ruby-debug that works on 1.9.2 and 1.9.3
BSD 2-Clause "Simplified" License
846 stars 80 forks source link

Fixes some order dependent failures in test suite. #81

Closed deivid-rodriguez closed 11 years ago

deivid-rodriguez commented 11 years ago

I just found this issue. I accidentally introduced it in pull request #72. This pull request should fix it. To reproduce execute just the eval test a few times, it will eventually fail.

rake TEST=test/eval_test.rb

This is because autoeval and autolist were being unset and never turned back to their default state.

cldwalker commented 11 years ago

Makes sense