summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/flush_spec.rb
blob: 17a16dfdd540aac43681bcaf3bead67f4f899caf (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