mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
35 lines
438 B
Bash
35 lines
438 B
Bash
#!/usr/bin/env bats
|
|
|
|
load _test_base
|
|
|
|
|
|
function setup {
|
|
set_state_git
|
|
}
|
|
|
|
|
|
function teardown {
|
|
unset_current_state
|
|
}
|
|
|
|
|
|
@test "run 'usage'" {
|
|
run git secret usage
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
|
|
@test "run 'usage' without '.git/'" {
|
|
remove_git_repository
|
|
|
|
run git secret usage
|
|
[ "$status" -eq 1 ]
|
|
}
|
|
|
|
|
|
@test "run 'usage' with ignored '.gitsecret/'" {
|
|
echo ".gitsecret/" >> ".gitignore"
|
|
run git secret usage
|
|
[ "$status" -eq 1 ]
|
|
}
|