fix(scripts): correct usage and help exit status (#143)

This commit is contained in:
2025-06-30 08:51:06 +03:00
committed by GitHub
parent 29d3676b38
commit 07fe18af75
6 changed files with 21 additions and 3 deletions

View File

@@ -2,6 +2,6 @@
@test "x-gh-get-latest-version help" {
run bash local/bin/x-gh-get-latest-version --help
[ "$status" -eq 1 ]
[ "$status" -eq 0 ]
[[ "$output" == "Usage: x-gh-get-latest-version"* ]]
}

View File

@@ -5,3 +5,9 @@
[ "$status" -eq 0 ]
[[ "$output" == "x-localip version"* ]]
}
@test "x-localip help" {
run bash local/bin/x-localip --help
[ "$status" -eq 0 ]
[[ "$output" == "Usage:"* ]]
}

View File

@@ -6,3 +6,9 @@
[ "$status" -eq 0 ]
[ -d "$dir" ]
}
@test "x-mkd with no args shows usage" {
run bash local/bin/x-mkd
[ "$status" -eq 1 ]
[[ "$output" == "Usage:"* ]]
}

View File

@@ -20,3 +20,9 @@
VERBOSE=1 source local/bin/x-path-remove "$BATS_TMPDIR/dir"
[ "$PATH" = "/usr/bin" ]
}
@test "x-path-append skips missing directory" {
PATH="/usr/bin"
VERBOSE=1 source local/bin/x-path-append "$BATS_TMPDIR/no-such"
[ "$PATH" = "/usr/bin" ]
}