Sha256: 9a0ef4236974084fc0764a9158705e641535d79696cc5217f4c46d42883fc0ee
Contents?: true
Size: 500 Bytes
Versions: 1
Compression:
Stored size: 500 Bytes
Contents
# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/nano/hash/each_with_index.rb # # Extracted Fri Oct 28 14:20:18 EDT 2005 # Unit Tools Reap Test Extractor # require 'nano/hash/each_with_index.rb' require 'test/unit' class TCHash < Test::Unit::TestCase def test_each_with_key h1 = { :a=>1, :b=>2 } h2 = {} h1.each_with_index { |v,k| h2[v] = k } assert_equal( {1=>:a, 2=>:b}, h2 ) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
facets-0.9.0 | test/lib/nano/hash/test_each_with_index.rb |