Rename supports_auto_compact? to supports_compact?

It's testing whether GC compaction is supported in general.
This commit is contained in:
Peter Zhu 2024-10-11 14:08:59 -04:00
Родитель 6a88e9d430
Коммит 8aeb60aec8
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -8,7 +8,7 @@ end
class TestGCCompact < Test::Unit::TestCase
module CompactionSupportInspector
def supports_auto_compact?
def supports_compact?
GC.respond_to?(:compact)
end
end
@ -17,7 +17,7 @@ class TestGCCompact < Test::Unit::TestCase
include CompactionSupportInspector
def setup
omit "autocompact not supported on this platform" unless supports_auto_compact?
omit "GC compaction not supported on this platform" unless supports_compact?
super
end
end
@ -83,7 +83,7 @@ class TestGCCompact < Test::Unit::TestCase
include CompactionSupportInspector
def assert_not_implemented(method, *args)
omit "autocompact is supported on this platform" if supports_auto_compact?
omit "autocompact is supported on this platform" if supports_compact?
assert_raise(NotImplementedError) { GC.send(method, *args) }
refute(GC.respond_to?(method), "GC.#{method} should be defined as rb_f_notimplement")