summaryrefslogtreecommitdiff
path: root/spec/ffi/ffi_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ffi/ffi_spec.rb')
-rw-r--r--spec/ffi/ffi_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/ffi/ffi_spec.rb b/spec/ffi/ffi_spec.rb
index 4de5310..608cd99 100644
--- a/spec/ffi/ffi_spec.rb
+++ b/spec/ffi/ffi_spec.rb
@@ -24,6 +24,15 @@ describe "FFI" do
expect(FFI.map_library_name('c')).to eq(FFI::Library::LIBC)
end
+ it "should return library path with abi version" do
+ expect(FFI.map_library_name(FFI::LibraryPath.new('vips', 42))).to be =~ /#{prefix}vips.*42/
+ end
+
+ it "should return library path with root" do
+ root = "/non/existant/root"
+
+ expect(FFI.map_library_name(FFI::LibraryPath.new('vips', 42, root))).to be =~ /#{root}/#{prefix}vips.*42/
+ end
end
describe "VERSION" do