summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2023-04-04 12:58:56 -0700
committerAaron Patterson <tenderlove@ruby-lang.org>2023-04-04 12:59:14 -0700
commit8525603c72e22c90aa423431684042af66d1d100 (patch)
tree0271d7007e863e05af5812255fb993351117ca12 /spec
parente5de0fe108f665c8df3d23494e2fff786f6d54a4 (diff)
downloadruby-8525603c72e22c90aa423431684042af66d1d100.tar.gz
Revert "Fix transient heap mode"
This reverts commit 87253d047ce35e7836b6f97edbb4f819879a3b25. Revert "Implement `Process.warmup`" This reverts commit ba6ccd871442f55080bffd53e33678c0726787d2.
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/core/process/warmup_spec.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/ruby/core/process/warmup_spec.rb b/spec/ruby/core/process/warmup_spec.rb
deleted file mode 100644
index fbdfd34848..0000000000
--- a/spec/ruby/core/process/warmup_spec.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-require_relative '../../spec_helper'
-
-describe "Process.warmup" do
- ruby_version_is "3.3" do
- # The behavior is entirely implementation dependant.
- # Other implementations are free to just make it a noop
- it "is implemented" do
- Process.warmup.should == true
- end
- end
-end