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/core/kernel/trap_spec.rb
2021-03-27 13:02:41 +01:00

9 lines
202 B
Ruby

require_relative '../../spec_helper'
describe "Kernel#trap" do
it "is a private method" do
Kernel.should have_private_instance_method(:trap)
end
# Behaviour is specified for Signal.trap
end