Sha256: 755c5267a9cf2a047f5c18de1913e6dfee965eaef155b3dcb1062f30f971f804
Contents?: true
Size: 751 Bytes
Versions: 52
Compression:
Stored size: 751 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "Process.getpriority" do platform_is_not :windows do it "coerces arguments to Integers" do ret = Process.getpriority mock_int(Process::PRIO_PROCESS), mock_int(0) ret.should be_kind_of(Fixnum) end it "gets the scheduling priority for a specified process" do Process.getpriority(Process::PRIO_PROCESS, 0).should be_kind_of(Fixnum) end it "gets the scheduling priority for a specified process group" do Process.getpriority(Process::PRIO_PGRP, 0).should be_kind_of(Fixnum) end it "gets the scheduling priority for a specified user" do Process.getpriority(Process::PRIO_USER, 0).should be_kind_of(Fixnum) end end end
Version data entries
52 entries across 52 versions & 2 rubygems