free_mutant/spec/support/rb_bug.rb
2015-07-02 03:35:54 +00:00

17 lines
265 B
Ruby

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