Actions
Bug #11912
closedRemove deprecated assert_present assert_blank
Description
Rails 4.1 deprecates assert_present and assert_blank as per http://guides.rubyonrails.org/4_1_release_notes.html . We don't use these extensively, so we can afford to remove them and use the recommended assert object.present? and assert object.blank?
Added by Daniel Lobato Garcia over 9 years ago
Actions
Fixes #11912 - Remove deprecated assert_present assert_blank
Rails 4.1 deprecates assert_present and assert_blank as per
http://guides.rubyonrails.org/4_1_release_notes.html . We don't use
these extensively, so we can afford to remove them and use the
recommended assert object.present? and assert object.blank?
Merging this won't introduce any failures on Rails 3 and it will reduce
the diff between the develop and rails 4 branches