aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/symbol_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/core_ext/symbol_test.rb')
-rw-r--r--activesupport/test/core_ext/symbol_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/symbol_test.rb b/activesupport/test/core_ext/symbol_test.rb
new file mode 100644
index 0000000000..fec504d9d1
--- /dev/null
+++ b/activesupport/test/core_ext/symbol_test.rb
@@ -0,0 +1,8 @@
+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