aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-07-01 13:15:01 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-07-01 13:15:01 -0700
commitcd74f0292f0e4caa13fae2b9869f5f190c081839 (patch)
treeec9d318873b86b3d25c0eeba8d4b4cf540301a64 /activesupport/lib/active_support
parentb6e061459b6a53959e26f94a750ccc9528116e05 (diff)
parent74ebc451c92f1788f6689f085490f8a5156dde4e (diff)
downloadrails-cd74f0292f0e4caa13fae2b9869f5f190c081839.tar.gz
rails-cd74f0292f0e4caa13fae2b9869f5f190c081839.tar.bz2
rails-cd74f0292f0e4caa13fae2b9869f5f190c081839.zip
Merge pull request #11224 from senny/remove_assert_blank_and_assert_present
remove deprecated `assert_present` and `assert_blank`.
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/testing/assertions.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/activesupport/lib/active_support/testing/assertions.rb b/activesupport/lib/active_support/testing/assertions.rb
index 175f7ffe5a..76a591bc3b 100644
--- a/activesupport/lib/active_support/testing/assertions.rb
+++ b/activesupport/lib/active_support/testing/assertions.rb
@@ -92,36 +92,6 @@ module ActiveSupport
def assert_no_difference(expression, message = nil, &block)
assert_difference expression, 0, message, &block
end
-
- # Test if an expression is blank. Passes if <tt>object.blank?</tt>
- # is +true+.
- #
- # assert_blank [] # => true
- # assert_blank [[]] # => [[]] is not blank
- #
- # An error message can be specified.
- #
- # assert_blank [], 'this should be blank'
- def assert_blank(object, message=nil)
- ActiveSupport::Deprecation.warn('"assert_blank" is deprecated. Please use "assert object.blank?" instead')
- message ||= "#{object.inspect} is not blank"
- assert object.blank?, message
- end
-
- # Test if an expression is not blank. Passes if <tt>object.present?</tt>
- # is +true+.
- #
- # assert_present({ data: 'x' }) # => true
- # assert_present({}) # => {} is blank
- #
- # An error message can be specified.
- #
- # assert_present({ data: 'x' }, 'this should not be blank')
- def assert_present(object, message=nil)
- ActiveSupport::Deprecation.warn('"assert_present" is deprecated. Please use "assert object.present?" instead')
- message ||= "#{object.inspect} is blank"
- assert object.present?, message
- end
end
end
end