Silencing Deprecation Warnings in Rspec

Posted . Visible to the public.

If you’re testing the behavior of deprecated code in your Ruby project, the warning messages littered throughout your spec output is incredibly noisy.

You could silence all warnings with ::ActiveSupport::Deprecation.silenced = true, but you might miss out on an important warning in one of your dependencies. It’s tempting to remove the tests altogether (the code will be burned soon too, right?), but I figured out something a little nicer a little while back in Formtastic’s test suite.

Last edit
Keywords
makandra, rspec, ruby, testing, rails
License
Source code in this card is licensed under the MIT License.
Posted by Lexy to makandra dev (2011-01-11 23:03)