Commit 3ae43a44 by Mislav Marohnić

Capitalize "Usage:" header for consistency with rbenv help system

parent 960e183d
#!/usr/bin/env bash #!/usr/bin/env bash
# #
# usage: ruby-build [-kvp] <definition> <prefix> # Usage: ruby-build [-kvp] <definition> <prefix>
# ruby-build --definitions # ruby-build --definitions
# #
# -k/--keep Do not remove source tree after installation # -k/--keep Do not remove source tree after installation
......
...@@ -9,7 +9,7 @@ load test_helper ...@@ -9,7 +9,7 @@ load test_helper
run ruby-build "$definition" run ruby-build "$definition"
assert_failure assert_failure
assert_output_contains 'usage: ruby-build' assert_output_contains 'Usage: ruby-build'
} }
@test "extra arguments for ruby-build" { @test "extra arguments for ruby-build" {
...@@ -19,7 +19,7 @@ load test_helper ...@@ -19,7 +19,7 @@ load test_helper
run ruby-build "$definition" "${TMP}/install" "" run ruby-build "$definition" "${TMP}/install" ""
assert_failure assert_failure
assert_output_contains 'usage: ruby-build' assert_output_contains 'Usage: ruby-build'
} }
@test "extra arguments for rbenv-install" { @test "extra arguments for rbenv-install" {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment