summaryrefslogtreecommitdiff
path: root/spec/ruby/library/etc/nprocessors_spec.rb
blob: 2a22aaafdfe967ff900b397b1ea18b2f38dd024b (plain)
1
2
3
4
5
6
7
8
9
require File.expand_path('../../../spec_helper', __FILE__)
require 'etc'

describe "Etc.nprocessors" do
  it "returns the number of online processors" do
    Etc.nprocessors.should be_kind_of(Integer)
    Etc.nprocessors.should >= 1
  end
end