summaryrefslogtreecommitdiff
path: root/spec/syntax_suggest
diff options
context:
space:
mode:
authorschneems <richard.schneeman+foo@gmail.com>2022-11-25 16:26:43 -0600
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-11-28 20:55:41 +0900
commitf64ba0fadd97adbd7cb8171fc8aa010b829a7185 (patch)
treebbec9f541b81939dbdbe1da7575fc2a6adb0c121 /spec/syntax_suggest
parent4d51a0b495262073a8c1c0c9d7f276c4e6260688 (diff)
downloadruby-f64ba0fadd97adbd7cb8171fc8aa010b829a7185.tar.gz
[ruby/syntax_suggest] Do not output "Syntax OK" when there's an error
Due to a problem with ripper we do not recognize `break` as invalid code. It's confusing that "Syntax OK" is output in that case. When there's no syntax error, the algorithm should not say anything. The exception is in the CLI and that's for compatibility with `ruby -wc` ``` $ cat /tmp/break.rb break ⛄️ 3.1.2 🚀 /Users/rschneeman/Documents/projects/syntax_suggest (schneems/no-syntax-not-okay-break) $ ruby -wc /tmp/break.rb Syntax OK ``` > Note that this is invalid, running this code will raise a Syntax error. ``` $ exe/syntax_suggest /tmp/break.rb Syntax OK ``` Close https://github.com/ruby/syntax_suggest/pull/157 https://github.com/ruby/syntax_suggest/commit/d7bd8f03a2
Diffstat (limited to 'spec/syntax_suggest')
-rw-r--r--spec/syntax_suggest/unit/api_spec.rb2
-rw-r--r--spec/syntax_suggest/unit/display_invalid_blocks_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/syntax_suggest/unit/api_spec.rb b/spec/syntax_suggest/unit/api_spec.rb
index 21df86bb3e..006e26fd22 100644
--- a/spec/syntax_suggest/unit/api_spec.rb
+++ b/spec/syntax_suggest/unit/api_spec.rb
@@ -25,7 +25,7 @@ module SyntaxSuggest
io: io
)
- expect(io.string.strip).to eq("Syntax OK")
+ expect(io.string.strip).to eq("")
end
it "raises original error with warning if a non-syntax error is passed" do
diff --git a/spec/syntax_suggest/unit/display_invalid_blocks_spec.rb b/spec/syntax_suggest/unit/display_invalid_blocks_spec.rb
index c696132782..45b3e7f2e7 100644
--- a/spec/syntax_suggest/unit/display_invalid_blocks_spec.rb
+++ b/spec/syntax_suggest/unit/display_invalid_blocks_spec.rb
@@ -25,7 +25,7 @@ module SyntaxSuggest
code_lines: search.code_lines
)
display.call
- expect(io.string).to include("Syntax OK")
+ expect(io.string).to include("")
end
it "selectively prints to terminal if input is a tty by default" do