Sha256: 8c89298541fa99aa3fd5336124a67a05733f38138e79b2c0910577163221f40d
Contents?: true
Size: 471 Bytes
Versions: 79
Compression:
Stored size: 471 Bytes
Contents
# # This file is part of ruby-ffi. # For licensing, see LICENSE.SPECS # require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper")) describe "FFI.errno" do module LibTest extend FFI::Library ffi_lib TestLibrary::PATH attach_function :setLastError, [ :int ], :void end it "FFI.errno contains errno from last function" do LibTest.setLastError(0) LibTest.setLastError(0x12345678) expect(FFI.errno).to eq(0x12345678) end end
Version data entries
79 entries across 77 versions & 14 rubygems