aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/io/shared/gets_ascii.rb
blob: 2a8fe3c9a5fda1910135d9b593693ce22fd8bdf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: binary -*-
describe :io_gets_ascii, shared: true do
  describe "with ASCII separator" do
    before :each do
      @name = tmp("gets_specs.txt")
      touch(@name, "wb") { |f| f.print "this is a test\xFFtesty\ntestier" }

      File.open(@name, "rb") { |f| @data = f.send(@method, "\xFF") }
    end

    after :each do
      rm_r @name
    end

    it "returns the separator's character representation" do
      @data.should == "this is a test\xFF"
    end
  end
end