free_mutant/spec/support/rb_bug.rb
2015-11-15 23:13:43 +00:00

16 lines
259 B
Ruby

require 'ffi'
# @api private
module RbBug
extend FFI::Library
ffi_lib 'ruby'
attach_function :rb_bug, %i[string varargs], :void
# Call the test bug
#
# @return [undefined]
def self.call
rb_bug('%s', :string, 'test bug')
end
end # RbBug