зеркало из https://github.com/github/ruby.git
Cleanup GC.auto_compact spec
* Make the supported check more obvious.
This commit is contained in:
Родитель
800dad6297
Коммит
a954f273a8
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче