summaryrefslogtreecommitdiff
path: root/spec/ruby/core/nil/singleton_method_spec.rb
blob: 8d898b1cc94d707d996aa2e83dca8eedb78cde9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../spec_helper'

describe "NilClass#singleton_method" do
  ruby_version_is '3.3' do
    it "raises regardless of whether NilClass defines the method" do
      -> { nil.singleton_method(:foo) }.should raise_error(NameError)
      begin
        def (nil).foo; end
        -> { nil.singleton_method(:foo) }.should raise_error(NameError)
      ensure
        NilClass.send(:remove_method, :foo)
      end
    end
  end
end