summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/stringio/fixtures/classes.rb
blob: bb8dc354cc44a4996e0cb8591a05192c4e60f518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'stringio'

class StringSubclass < String; end

module StringIOSpecs
  def self.build
  str = <<-EOS
    each
    peach
    pear
    plum
  EOS
    StringIO.new(str)
  end
end