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

describe "ARGF.to_s" do
  before :each do
    @file1 = fixture __FILE__, "file1.txt"
    @file2 = fixture __FILE__, "file2.txt"
  end

  it "returns 'ARGF'" do
    argf [@file1, @file2] do
      @argf.to_s.should == "ARGF"
    end
  end
end