Sha256: e5f154896d39aeb78b96f451ac002fc1d24b671112980a7465ce519663963ebc
Contents?: true
Size: 808 Bytes
Versions: 39
Compression:
Stored size: 808 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" do describe ".map_library_name" do let(:prefix) { FFI::Platform::LIBPREFIX } let(:suffix) { FFI::Platform::LIBSUFFIX } it "should add platform library extension if not present" do FFI.map_library_name("#{prefix}dummy").should == "#{prefix}dummy.#{suffix}" end it "should add platform library extension even if lib suffix is present in name" do FFI.map_library_name("#{prefix}dummy_with_#{suffix}").should == "#{prefix}dummy_with_#{suffix}.#{suffix}" end it "should return Platform::LIBC when called with 'c'" do FFI.map_library_name('c').should == FFI::Library::LIBC end end end
Version data entries
39 entries across 37 versions & 8 rubygems