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

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