andrewchhwong (Andrew Wong)
- Login: andrewchhwong
- Email: andrewchhwong+ruby@gmail.com
- Registered on: 08/10/2015
- Last sign in: 04/12/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
04/12/2016
-
07:56 PM Ruby Bug #11430: Redefining a lazy-loaded variable in child context within RSpec spec causes crash
- Not sure what to do here. Do random issues like this get triaged? Or sitting around like this is typical?
08/10/2015
-
09:27 PM Ruby Bug #11430 (Closed): Redefining a lazy-loaded variable in child context within RSpec spec causes crash
- I had something like the following in my spec. While not great code design, it does successfully crash Ruby.
~~~ruby
let(:my_hash) do
{
key_one: 'val_one'
}
end
subject { post :create, my_hash, format: :json }
conte...