mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
19 lines
366 B
Ruby
19 lines
366 B
Ruby
require_relative '../../spec_helper'
|
|
|
|
describe "Symbol" do
|
|
it "includes Comparable" do
|
|
Symbol.include?(Comparable).should == true
|
|
end
|
|
|
|
it ".allocate raises a TypeError" do
|
|
-> do
|
|
Symbol.allocate
|
|
end.should raise_error(TypeError)
|
|
end
|
|
|
|
it ".new is undefined" do
|
|
-> do
|
|
Symbol.new
|
|
end.should raise_error(NoMethodError)
|
|
end
|
|
end
|