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