Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failing CLI test #483

Merged
merged 1 commit into from Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions test/spoom/cli/cli_test.rb
Expand Up @@ -25,7 +25,7 @@ def test_display_help_long_option
assert_equal(<<~OUT, result.out)
Commands:
spoom --version # Show version
spoom bump # Bump Sorbet sigils from `false` to `true` when no e...
spoom bump # Bump Sorbet sigils from `false` to `true` when no errors
spoom config # Manage Sorbet config
spoom coverage # Collect metrics related to Sorbet coverage
spoom files # List all the files typechecked by Sorbet
Expand All @@ -34,10 +34,10 @@ def test_display_help_long_option
spoom tc # Run Sorbet and parses its output

Options:
[--color], [--no-color] # Use colors
# Default: true
p, [--path=PATH] # Run spoom in a specific path
# Default: .
[--color], [--no-color] # Use colors
# Default: true
-p, [--path=PATH] # Run spoom in a specific path
# Default: .

OUT
end
Expand Down