Sha256: a6be884b6296524d225f33809736dba9cf47644a9997611dd66e01911ced74e6

Contents?: true

Size: 1.26 KB

Versions: 6

Compression:

Stored size: 1.26 KB

Contents

require 'helper'

test_case CastingHash do

  class_method :[] do
    test do
      h = CastingHash[:a=>1, :b=>2]
    end
  end

  class_method :new do
    test do
      h = CastingHash.new
    end

    test 'with default' do
      h = CastingHash.new(0)
      h['a'].assert == 0
    end

    test 'with casting procedure' do
      h = CastingHash.new{ |k,v| [k.to_sym, v] }
      h['a'] = 1
      h.assert == {:a=>1}
    end

    test 'with default and casting procedure' do
      h = CastingHash.new(0){ |k,v| [k.to_sym, v] }
      h['a'].assert == 0
      h['b'] = 2
      h.assert == {:b=>2}
    end
  end

  method :recast! do
    test do
      h = CastingHash[:a=>1, :b=>2]
      h.cast_proc{ |k,v| [k.to_s, v] }
      h.recast!
      h.assert == {'a'=>1, 'b'=>2}
    end
  end

  method :cast_proc= do
    test do
      h = CastingHash[:a=>1, :b=>2]
      h.cast_proc = Proc.new{ |k,v| [k.to_s, v] }
      h.recast!
      h.assert == {'a'=>1, 'b'=>2}
    end
  end

  method :to_hash do
    test do
      h = CastingHash[:a=>1, :b=>2]
      h.to_hash
      ::Hash.assert === h
      h.assert == {:a=>1, :b=>2}
    end
  end

  method :to_h do
    test do
      h = CastingHash[:a=>1, :b=>2]
      h.to_h
      ::Hash.assert === h
      h.assert == {:a=>1, :b=>2}
    end
  end

end

Version data entries

6 entries across 5 versions & 2 rubygems

Version Path
embulk-input-druginfo_interview_form-0.1.0 vendor/bundle/ruby/2.4.0/gems/hashery-2.1.2/test/case_casting_hash.rb
embulk-input-druginfo_interview_form-0.1.0 vendor/bundle/ruby/2.5.0/gems/hashery-2.1.2/test/case_casting_hash.rb
hashery-2.1.2 test/case_casting_hash.rb
hashery-2.1.1 test/case_casting_hash.rb
hashery-2.1.0 test/case_casting_hash.rb
hashery-2.0.1 test/case_casting_hash.rb