aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/test/core_ext/symbol_test.rb
blob: b30bd0b985c57b55cf2f3a70e67cf139d6d1826b (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                                            
                                        
                  
                                                                    

                                                                          

     
require 'test/unit'
require File.dirname(__FILE__) + '/../../lib/active_support/core_ext/symbol'

class SymbolTests < Test::Unit::TestCase
  def test_to_proc
    assert_equal %w(one two three), [:one, :two, :three].map(&:to_s)
    assert_equal(%w(one two three),
      {1 => "one", 2 => "two", 3 => "three"}.sort_by(&:first).map(&:last))
  end
end