mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-01-19 20:51:59 +01:00
Capitalize "Usage:" header for consistency with rbenv help system
This commit is contained in:
parent
960e183d4c
commit
3ae43a44e2
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# usage: ruby-build [-kvp] <definition> <prefix>
|
||||
# Usage: ruby-build [-kvp] <definition> <prefix>
|
||||
# ruby-build --definitions
|
||||
#
|
||||
# -k/--keep Do not remove source tree after installation
|
||||
|
|
|
@ -9,7 +9,7 @@ load test_helper
|
|||
|
||||
run ruby-build "$definition"
|
||||
assert_failure
|
||||
assert_output_contains 'usage: ruby-build'
|
||||
assert_output_contains 'Usage: ruby-build'
|
||||
}
|
||||
|
||||
@test "extra arguments for ruby-build" {
|
||||
|
@ -19,7 +19,7 @@ load test_helper
|
|||
|
||||
run ruby-build "$definition" "${TMP}/install" ""
|
||||
assert_failure
|
||||
assert_output_contains 'usage: ruby-build'
|
||||
assert_output_contains 'Usage: ruby-build'
|
||||
}
|
||||
|
||||
@test "extra arguments for rbenv-install" {
|
||||
|
|
Loading…
Reference in a new issue