summaryrefslogtreecommitdiff
path: root/spec/ruby/core/argf/argf_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/argf/argf_spec.rb')
-rw-r--r--spec/ruby/core/argf/argf_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/argf/argf_spec.rb b/spec/ruby/core/argf/argf_spec.rb
index af67170b98..f9468539bb 100644
--- a/spec/ruby/core/argf/argf_spec.rb
+++ b/spec/ruby/core/argf/argf_spec.rb
@@ -2,10 +2,10 @@ require_relative '../../spec_helper'
describe "ARGF" do
it "is extended by the Enumerable module" do
- ARGF.should be_kind_of(Enumerable)
+ ARGF.should.is_a?(Enumerable)
end
it "is an instance of ARGF.class" do
- ARGF.should be_an_instance_of(ARGF.class)
+ ARGF.should.instance_of?(ARGF.class)
end
end