Sha256: 4639a64193eb78061d3effcc143303ab9fcbd70f8b792fdc8733ee3fd0497871
Contents?: true
Size: 380 Bytes
Versions: 52
Compression:
Stored size: 380 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "IO::SEEK_SET" do it "is defined" do IO.const_defined?(:SEEK_SET).should == true end end describe "IO::SEEK_CUR" do it "is defined" do IO.const_defined?(:SEEK_CUR).should == true end end describe "IO::SEEK_END" do it "is defined" do IO.const_defined?(:SEEK_END).should == true end end
Version data entries
52 entries across 52 versions & 2 rubygems