D
Dmitry V. Sabanin
Hi,
Lately I was converting some of my projects to ruby 1.9, and I found that this code is no longer working:
raise if defined?(Test::Unit)
Throws:
uninitialized constant Test (NameError)
Ruby 1.8 silently works with that code. So, how do I need to handle this kind of checks in 1.9?
For now as a workaround I changed Test::Unit to Test and it works fine.
Lately I was converting some of my projects to ruby 1.9, and I found that this code is no longer working:
raise if defined?(Test::Unit)
Throws:
uninitialized constant Test (NameError)
Ruby 1.8 silently works with that code. So, how do I need to handle this kind of checks in 1.9?
For now as a workaround I changed Test::Unit to Test and it works fine.