mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
228 B
Ruby
12 lines
228 B
Ruby
|
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
|
||
|
describe "Symbol#intern" do
|
||
|
it "returns self" do
|
||
|
:foo.intern.should == :foo
|
||
|
end
|
||
|
|
||
|
it "returns a Symbol" do
|
||
|
:foo.intern.should be_kind_of(Symbol)
|
||
|
end
|
||
|
end
|