summaryrefslogtreecommitdiff
path: root/spec/ruby/core/symbol/shared/id2name.rb
blob: d012b7634e5510c843ee17892e5d792c73ce26dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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