summaryrefslogtreecommitdiff
path: root/spec/ruby/command_line/feature_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/command_line/feature_spec.rb')
-rw-r--r--spec/ruby/command_line/feature_spec.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/ruby/command_line/feature_spec.rb b/spec/ruby/command_line/feature_spec.rb
index 2025768b41..02571ee8c6 100644
--- a/spec/ruby/command_line/feature_spec.rb
+++ b/spec/ruby/command_line/feature_spec.rb
@@ -37,15 +37,6 @@ describe "The --enable and --disable flags" do
ruby_exe("p 'foo'.frozen?", options: "--disable-frozen-string-literal").chomp.should == "false"
end
- ruby_version_is "2.6" do
- it "can be used with jit" do
- ruby_exe("p :OK", options: "--enable=jit 2>&1").chomp.should == ":OK"
- ruby_exe("p :OK", options: "--disable=jit 2>&1").chomp.should == ":OK"
- ruby_exe("p :OK", options: "--enable-jit 2>&1").chomp.should == ":OK"
- ruby_exe("p :OK", options: "--disable-jit 2>&1").chomp.should == ":OK"
- end
- end
-
it "can be used with all" do
e = "p [defined?(Gem), defined?(DidYouMean), $VERBOSE, 'foo'.frozen?]"
env = {'RUBYOPT' => '-w'}