summaryrefslogtreecommitdiff
path: root/spec/ruby/core/gc/count_spec.rb
blob: 11648ac9be92f3f878c3d3f8eb849af3a207229c (plain)
1
2
3
4
5
6
7
require_relative '../../spec_helper'

describe "GC.count" do
  it "returns an integer" do
    GC.count.should be_kind_of(Integer)
  end
end