instiki/vendor/rails/activesupport/test/core_ext/blank_test.rb

22 lines
793 B
Ruby
Raw Normal View History

require 'abstract_unit'
2007-01-22 14:43:50 +01:00
class BlankTest < Test::Unit::TestCase
BLANK = [ EmptyTrue.new, nil, false, '', ' ', " \n\t \r ", [], {} ]
NOT = [ EmptyFalse.new, Object.new, true, 0, 1, 'a', [nil], { nil => 0 } ]
2007-01-22 14:43:50 +01:00
def test_blank
2010-05-25 19:45:45 +02:00
BLANK.each { |v| assert v.blank?, "#{v.inspect} should be blank" }
NOT.each { |v| assert !v.blank?, "#{v.inspect} should not be blank" }
2007-01-22 14:43:50 +01:00
end
def test_present
BLANK.each { |v| assert !v.present?, "#{v.inspect} should not be present" }
2010-05-25 19:45:45 +02:00
NOT.each { |v| assert v.present?, "#{v.inspect} should be present" }
end
def test_presence
BLANK.each { |v| assert_equal nil, v.presence, "#{v.inspect}.presence should return nil" }
NOT.each { |v| assert_equal v, v.presence, "#{v.inspect}.presence should return self" }
end
2007-01-22 14:43:50 +01:00
end