summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/io_spec.rb
blob: 0feb1a87748f35e784837b153c2c01f82d23019d (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'

describe "IO" do
  it "includes File::Constants" do
    IO.include?(File::Constants).should == true
  end

  it "includes Enumerable" do
    IO.include?(Enumerable).should == true
  end
end