summaryrefslogtreecommitdiff
path: root/spec/ruby/core/argf/argf_spec.rb
blob: af67170b98d709ecabcf3c92e0b39fc11103d325 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'

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