summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-27 09:52:04 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-27 09:52:04 +0000
commit96e6eb380dc097ba0d47a589a7158e5b1a3c1cae (patch)
tree23946fdf8085a533357eba68c18a105b6c393384
parentf13b0fd8f31fbbdf58bbf45f58f1fa798b4c55b2 (diff)
Specs must keep working on older versions and other implementations
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--spec/ruby/command_line/dash_v_spec.rb2
-rw-r--r--spec/ruby/command_line/rubyopt_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/command_line/dash_v_spec.rb b/spec/ruby/command_line/dash_v_spec.rb
index 801ea42846..36e73a2cba 100644
--- a/spec/ruby/command_line/dash_v_spec.rb
+++ b/spec/ruby/command_line/dash_v_spec.rb
@@ -7,7 +7,7 @@ describe "The -v command line option" do
describe "when used alone" do
it "prints version and ends" do
ruby_description =
- if RubyVM::MJIT.enabled?
+ if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
# fake.rb always drops +JIT from RUBY_DESCRIPTION. This resurrects that.
RUBY_DESCRIPTION.sub(/ \[[^\]]+\]$/, ' +JIT\0')
else
diff --git a/spec/ruby/command_line/rubyopt_spec.rb b/spec/ruby/command_line/rubyopt_spec.rb
index cfb86dfc58..87a826e254 100644
--- a/spec/ruby/command_line/rubyopt_spec.rb
+++ b/spec/ruby/command_line/rubyopt_spec.rb
@@ -23,7 +23,7 @@ describe "Processing RUBYOPT" do
end
ruby_description =
- if RubyVM::MJIT.enabled?
+ if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
# fake.rb always drops +JIT from RUBY_DESCRIPTION. This resurrects that.
RUBY_DESCRIPTION.sub(/ \[[^\]]+\]$/, ' +JIT\0')
else