Repository URL to install this package:
|
Version:
1.9.14 ▾
|
#
# This file is part of ruby-ffi.
# For licensing, see LICENSE.SPECS
#
require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))
if false # disabled for #390
describe "FFI::IO.for_fd" do
it "produces an IO wrapping the specified file descriptor" do
expect do
FFI::IO.for_fd(2, "r")
end.to_not raise_error
end
end
end