aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/argf/argf_spec.rb
blob: b47e77c17fee4bc155b684ad052d339b9ee48fc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)

describe "ARGF" do
  it "is extended by the Enumerable module" do
    ARGF.should be_kind_of(Enumerable)
  end

  it "is an instance of ARGF.class" do
    ARGF.should be_an_instance_of(ARGF.class)
  end
end