Sha256: e0f0f4f3d111c7c0d89a3ee1b457e467c7e3a9971e775589b979742c7cf529d9

Contents?: true

Size: 869 Bytes

Versions: 4

Compression:

Stored size: 869 Bytes

Contents

# encoding: utf-8

require 'abstract_unit'
require 'active_support/core_ext/object/blank'

class BlankTest < ActiveSupport::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

  def test_present
    BLANK.each { |v| assert !v.present?, "#{v.inspect} should not be present" }
    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
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
opal-activesupport-0.3.3 test/core_ext/blank_test.rb
opal-activesupport-0.3.2 test/core_ext/blank_test.rb
opal-activesupport-0.3.1 test/core_ext/blank_test.rb
opal-activesupport-0.3.0 test/core_ext/blank_test.rb