summaryrefslogtreecommitdiff
path: root/spec/ruby/core/main/ruby2_keywords_spec.rb
blob: 0999cddeed10e5929049f7ea5789573bb9b020cb (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

ruby_version_is "2.7" do
  describe "main.ruby2_keywords" do
    it "is the same as Object.ruby2_keywords" do
      main = TOPLEVEL_BINDING.receiver
      main.should have_private_method(:ruby2_keywords)
    end
  end
end