aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/argf/getc_spec.rb
blob: dc5de9b7df0f27ed61f899edcae72a9733b75816 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative '../../spec_helper'
require_relative 'shared/getc'

describe "ARGF.getc" do
  it_behaves_like :argf_getc, :getc
end

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

  it "returns nil when end of stream reached" do
    argf [@file1, @file2] do
      @argf.read
      @argf.getc.should == nil
    end
  end
end