aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/blank_test.rb
blob: 76a0b399788f086da9cccb451e5a590a93f811cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.dirname(__FILE__) + '/../abstract_unit'

class BlankTest < Test::Unit::TestCase
  BLANK = [nil, false, '', '   ', "  \n\t  \r ", [], {}]
  NOT   = [true, 0, 1, 'a', [nil], { nil => 0 }]
  
  class EmptyObject
    def empty?
      true
    end
    alias :strip :empty?
  end
  class NoStripObject < EmptyObject; undef :strip; end
  class NoEmptyStripObject < NoStripObject; undef :empty?; end

  def test_blank
    BLANK.each { |v| assert v.blank?  }
    NOT.each   { |v| assert !v.blank? }
    assert EmptyObject.new.blank?
    assert NoStripObject.new.blank?
    assert !NoEmptyStripObject.new.blank?
  end
end