1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/fiddle/handle/initialize_spec.rb
2022-09-28 18:37:17 +02:00

10 lines
277 B
Ruby

require_relative '../../../spec_helper'
require 'fiddle'
describe "Fiddle::Handle#initialize" do
it "raises Fiddle::DLError if the library cannot be found" do
-> {
Fiddle::Handle.new("doesnotexist.doesnotexist")
}.should raise_error(Fiddle::DLError)
end
end