2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
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
|