Files
rails/activesupport/test/core_ext/symbol.rb
2005-11-21 02:15:32 +00:00

9 lines
235 B
Ruby

require 'test/unit'
require File.dirname(__FILE__) + '/../../lib/active_support/core_ext/symbol'
class TestSymbol < Test::Case::TestUnit
def test_to_proc
assert_equal %w(one two three), [:one, :two, :three].map &:to_s
end
end