From 565aeb81e0886c835888a425e5d05ed99fb03238 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 20 Jan 2021 15:05:30 +0900 Subject: Skip freezing check on setting temporary class path [Bug #17563] Co-authored-by: ryannevell (Ryan Nevell) --- test/ruby/test_class.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/ruby/test_class.rb') diff --git a/test/ruby/test_class.rb b/test/ruby/test_class.rb index 6a8234a9d3..368c046261 100644 --- a/test/ruby/test_class.rb +++ b/test/ruby/test_class.rb @@ -730,4 +730,11 @@ class TestClass < Test::Unit::TestCase end; end + + def test_assign_frozen_class_to_const + c = Class.new.freeze + assert_same(c, Module.new.module_eval("self::Foo = c")) + c = Class.new.freeze + assert_same(c, Module.new.const_set(:Foo, c)) + end end -- cgit v1.2.3