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.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/spec/ruby/core/symbol/shared/id2name.rb b/spec/ruby/core/symbol/shared/id2name.rb
deleted file mode 100644
index d012b7634e..0000000000
--- a/spec/ruby/core/symbol/shared/id2name.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-describe :symbol_id2name, shared: true do
- it "returns the string corresponding to self" do
- :rubinius.send(@method).should == "rubinius"
- :squash.send(@method).should == "squash"
- :[].send(@method).should == "[]"
- :@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