instiki/vendor/rails/activesupport/test/core_ext/symbol_test.rb

9 lines
237 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
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)
end
end