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

ruby_version_is "3.2" do
  describe "Struct::Group" do
    it "is no longer defined" do
      Struct.should_not.const_defined?(:Group)
    end
  end

  describe "Struct::Passwd" do
    it "is no longer defined" do
      Struct.should_not.const_defined?(:Passwd)
    end
  end
end