summaryrefslogtreecommitdiff
path: root/spec/ruby/core/proc/hash_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/proc/hash_spec.rb')
-rw-r--r--spec/ruby/core/proc/hash_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/core/proc/hash_spec.rb b/spec/ruby/core/proc/hash_spec.rb
index d780c1ceb0..adcb1ccb78 100644
--- a/spec/ruby/core/proc/hash_spec.rb
+++ b/spec/ruby/core/proc/hash_spec.rb
@@ -2,12 +2,12 @@ require_relative '../../spec_helper'
describe "Proc#hash" do
it "is provided" do
- proc {}.respond_to?(:hash).should be_true
- -> {}.respond_to?(:hash).should be_true
+ proc {}.respond_to?(:hash).should == true
+ -> {}.respond_to?(:hash).should == true
end
it "returns an Integer" do
- proc { 1 + 489 }.hash.should be_kind_of(Fixnum)
+ proc { 1 + 489 }.hash.should.is_a?(Integer)
end
it "is stable" do