blob: 1eaccb99651c731f37e29f9ce01c36c61d3392a6 (
plain) (
tree)
|
|
require 'abstract_unit'
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
|