We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42d9631 commit 23595f0Copy full SHA for 23595f0
1 file changed
core/gc/config_spec.rb
@@ -30,13 +30,13 @@
30
31
it "does not change settings that aren't present in the hash" do
32
previous = GC.config
33
- GC.config({})
+ GC.config({}).should == previous.except(:implementation)
34
GC.config.should == previous
35
end
36
37
it "ignores unknown keys" do
38
39
- GC.config(foo: "bar")
+ GC.config(foo: "bar").should == previous.except(:implementation)
40
41
42
0 commit comments