summaryrefslogtreecommitdiff
path: root/spec/ruby/core/process/warmup_spec.rb
blob: b562d52d226715b5d7c25ed5da3bc397d4eb87bc (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'

describe "Process.warmup" do
  ruby_version_is "3.3" do
    # The behavior is entirely implementation specific.
    # Other implementations are free to just make it a noop
    it "is implemented" do
      Process.warmup.should == true
    end
  end
end