summaryrefslogtreecommitdiff
path: root/spec/ruby/core/symbol/shared/id2name.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/symbol/shared/id2name.rb')
-rw-r--r--spec/ruby/core/symbol/shared/id2name.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/ruby/core/symbol/shared/id2name.rb b/spec/ruby/core/symbol/shared/id2name.rb
index 47f97bd332..d012b7634e 100644
--- a/spec/ruby/core/symbol/shared/id2name.rb
+++ b/spec/ruby/core/symbol/shared/id2name.rb
@@ -6,4 +6,11 @@ describe :symbol_id2name, shared: true do
:@ruby.send(@method).should == "@ruby"
:@@ruby.send(@method).should == "@@ruby"
end
+
+ it "returns a String in the same encoding as self" do
+ string = "ruby".encode("US-ASCII")
+ symbol = string.to_sym
+
+ symbol.send(@method).encoding.should == Encoding::US_ASCII
+ end
end