summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/stringio_spec.rb
blob: c32dc6c5a2dafeb56d2b538b7f7e351bd7358cdf (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'
require "stringio"

describe "StringIO" do
  it "includes the Enumerable module" do
    StringIO.should include(Enumerable)
  end
end