Sha256: ef0e5e18839fd365e5050c44a7521cc01d3e0f54d850fd9dbf6a7ea79ed6874b
Contents?: true
Size: 506 Bytes
Versions: 52
Compression:
Stored size: 506 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "SystemCallError#errno" do it "needs to be reviewed for spec completeness" end describe "Errno::EAGAIN" do # From http://jira.codehaus.org/browse/JRUBY-4747 it "is the same class as Errno::EWOULDBLOCK if they represent the same errno value" do if Errno::EAGAIN::Errno == Errno::EWOULDBLOCK::Errno Errno::EAGAIN.should == Errno::EWOULDBLOCK else Errno::EAGAIN.should_not == Errno::EWOULDBLOCK end end end
Version data entries
52 entries across 52 versions & 2 rubygems