Sha256: 0b695ead7dd99bbaefeaf6e6f643131931ad89ce334a522481800bb82d8729a6

Contents?: true

Size: 746 Bytes

Versions: 3

Compression:

Stored size: 746 Bytes

Contents

# Test for lib/facets/symbol/to_proc

require 'facets/symbol/to_proc.rb'
require 'test/unit'

class TestSymbolToProc < Test::Unit::TestCase

  def test_to_proc
    x = (1..10).inject(&:*)
    assert_equal(3628800, x)

    x = %w{foo bar qux}.map(&:reverse)
    assert_equal(%w{oof rab xuq}, x)

    x = [1, 2, nil, 3, nil].reject(&:nil?)
    assert_equal([1, 2, 3], x)

    x = %w{ruby and world}.sort_by(&:reverse)
    assert_equal(%w{world and ruby}, x)
  end

  def test_to_proc_call
    assert_instance_of(Proc, up = :upcase.to_proc )
    assert_equal( "HELLO", up.call("hello") )
  end

  def test_to_proc_map
    q = [[1,2,3], [4,5,6], [7,8,9]].map(&:reverse)
    a = [[3, 2, 1], [6, 5, 4], [9, 8, 7]]
    assert_equal( a, q )
  end

end


Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
facets-2.3.0 test/core/symbol/test_to_proc.rb
facets-2.2.0 test/unit/symbol/test_to_proc.rb
facets-2.2.1 test/unit/symbol/test_to_proc.rb