aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-27 02:04:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-27 02:04:39 +0000
commitc553ee2db807083a609b728c449956bf5b9f8727 (patch)
tree6837a11d9582f6e71cf7594f28504dff92045923 /test
parent035ef0a3475943d92f813a6449a33dc07b6d4e4c (diff)
downloadruby-c553ee2db807083a609b728c449956bf5b9f8727.tar.gz
* test/ruby/test_symbol.rb (TestSymbol#test_inspect): workaround for
ruby-mode.el. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_symbol.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb
index 104731a172..f4956535d4 100644
--- a/test/ruby/test_symbol.rb
+++ b/test/ruby/test_symbol.rb
@@ -77,7 +77,7 @@ class TestSymbol < Test::Unit::TestCase
def test_inspect
valid = %w{$a @a @@a < << <= <=> > >> >= =~ == === * ** + +@ - -@
- | ^ & / % ~ ` [] []= ! != !~ a a? a! a= A A? A! A=}
+ | ^ & / % ~ \` [] []= ! != !~ a a? a! a= A A? A! A=}
valid.each do |sym|
assert_equal(':' + sym, sym.intern.inspect)
end