* Make the supported check more obvious.
This commit is contained in:
Benoit Daloze 2021-10-29 21:59:35 +02:00
Родитель 800dad6297
Коммит a954f273a8
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -3,14 +3,15 @@ require_relative '../../spec_helper'
ruby_version_is "3.0" do
describe "GC.auto_compact" do
it "can set and get a boolean value" do
original = GC.auto_compact
begin
GC.auto_compact = !original
GC.auto_compact = GC.auto_compact
rescue NotImplementedError # platform does not support autocompact
skip
end
original = GC.auto_compact
begin
GC.auto_compact = !original
GC.auto_compact.should == !original
ensure
GC.auto_compact = original