24 lines
416 B
Ruby
24 lines
416 B
Ruby
|
|
#!/usr/bin/env ruby
|
||
|
|
#
|
||
|
|
# Put description here
|
||
|
|
#
|
||
|
|
#
|
||
|
|
#
|
||
|
|
#
|
||
|
|
#
|
||
|
|
|
||
|
|
require 'swig_assert'
|
||
|
|
|
||
|
|
exception_file = nil
|
||
|
|
|
||
|
|
begin
|
||
|
|
require 'import_fragments'
|
||
|
|
rescue LoadError => e
|
||
|
|
# due to missing import_fragments_a
|
||
|
|
exception_file = e.respond_to?(:path) ? e.path : e.to_s.sub(/.* -- /, '')
|
||
|
|
end
|
||
|
|
|
||
|
|
swig_assert(exception_file == "import_fragments_a",
|
||
|
|
msg: "Loading should have failed due to missing 'import_fragments_a'")
|
||
|
|
|