summaryrefslogtreecommitdiff
path: root/spec/syntax_suggest
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-08-26 11:13:26 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-08-26 12:15:47 +0900
commit5e4d1f9908fc09d0d9a451fd7e385af5ef0d7007 (patch)
treeec3e4ffe3a007855a5cd849b3a8b91ab4bc85956 /spec/syntax_suggest
parent8dfc077f7016715f33b4818ad3e6770d557356a1 (diff)
downloadruby-5e4d1f9908fc09d0d9a451fd7e385af5ef0d7007.tar.gz
Skip examples to need installed ruby exe
Diffstat (limited to 'spec/syntax_suggest')
-rw-r--r--spec/syntax_suggest/integration/ruby_command_line_spec.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/syntax_suggest/integration/ruby_command_line_spec.rb b/spec/syntax_suggest/integration/ruby_command_line_spec.rb
index 7a1c5c654e..6ed1bf0bf7 100644
--- a/spec/syntax_suggest/integration/ruby_command_line_spec.rb
+++ b/spec/syntax_suggest/integration/ruby_command_line_spec.rb
@@ -46,6 +46,8 @@ module SyntaxSuggest
end
it "detects require error and adds a message with auto mode" do
+ skip if ruby_core?
+
Dir.mktmpdir do |dir|
tmpdir = Pathname(dir)
script = tmpdir.join("script.rb")
@@ -77,6 +79,7 @@ module SyntaxSuggest
it "annotates a syntax error in Ruby 3.2+ when require is not used" do
pending("Support for SyntaxError#detailed_message monkeypatch needed https://gist.github.com/schneems/09f45cc23b9a8c46e9af6acbb6e6840d?permalink_comment_id=4172585#gistcomment-4172585")
+ skip if ruby_core?
skip if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.2")
Dir.mktmpdir do |dir|