mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
277 B
Ruby
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
|