aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/gc/start_spec.rb
blob: fb6820db1494c34a47fa5b67284eae915616f24c (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'

describe "GC.start" do
  it "always returns nil" do
    GC.start.should == nil
    GC.start.should == nil
  end
end