summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/flush_spec.rb
blob: 4dc58b1d4861289b648279eb780c459d2d6692fc (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "StringIO#flush" do
  it "returns self" do
    io = StringIO.new(+"flush")
    io.flush.should equal(io)
  end
end