mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
9348cd32e2
This reverts commit 9e8438236c
.
45 lines
710 B
Bash
45 lines
710 B
Bash
#!/usr/bin/env bats
|
|
|
|
load _test_base
|
|
|
|
|
|
function setup {
|
|
set_state_initial
|
|
set_state_git
|
|
}
|
|
|
|
|
|
function teardown {
|
|
unset_current_state
|
|
}
|
|
|
|
|
|
@test "run 'git secret' without command" {
|
|
run git secret
|
|
[ "$status" -eq 126 ]
|
|
}
|
|
|
|
|
|
@test "run 'git secret' with bad command" {
|
|
run git secret notacommand
|
|
[ "$status" -eq 126 ]
|
|
}
|
|
|
|
|
|
@test "run 'git secret --version'" {
|
|
run git secret --version
|
|
[ "$output" == "$GITSECRET_VERSION" ]
|
|
}
|
|
|
|
|
|
@test "run 'git secret --dry-run'" {
|
|
# We will break things apart, so normally it won't run:
|
|
rm -r "./.git"
|
|
|
|
# test of 'git secret usage' here removed as it's duplicated in test_usage.bats
|
|
|
|
# Dry run won't fail:
|
|
run git secret --dry-run
|
|
[ "$status" -eq 0 ]
|
|
}
|