summaryrefslogtreecommitdiff
path: root/spec/ruby/core/symbol/case_compare_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/symbol/case_compare_spec.rb')
-rw-r--r--spec/ruby/core/symbol/case_compare_spec.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/spec/ruby/core/symbol/case_compare_spec.rb b/spec/ruby/core/symbol/case_compare_spec.rb
index 0c6bc1eda5..a296132c04 100644
--- a/spec/ruby/core/symbol/case_compare_spec.rb
+++ b/spec/ruby/core/symbol/case_compare_spec.rb
@@ -1,11 +1,7 @@
require_relative '../../spec_helper'
describe "Symbol#===" do
- it "returns true when the argument is a Symbol" do
- (Symbol === :ruby).should == true
- end
-
- it "returns false when the argument is a String" do
- (Symbol === 'ruby').should == false
+ it "is an alias of Symbol#==" do
+ Symbol.instance_method(:===).should == Symbol.instance_method(:==)
end
end