aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/test/core_ext/blank_test.rb
blob: 27b9813ac440e297e38c829a290193b96c1deb74 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                    
 







                         
                                      

                                                                              

                

                                                                           

     
require File.dirname(__FILE__) + '/../abstract_unit'

class EmptyTrue
  def empty?() true; end
end

class EmptyFalse
  def empty?() false; end
end

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 } ]

  def test_blank
    BLANK.each { |v| assert v.blank?, "#{v.inspect} should be blank" }
    NOT.each   { |v| assert !v.blank?, "#{v.inspect} should not be blank" }
  end
end