mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-06 15:20:36 +00:00
37 lines
474 B
Plaintext
37 lines
474 B
Plaintext
|
#!/usr/bin/env bats
|
||
|
|
||
|
load _test_base
|
||
|
|
||
|
|
||
|
function setup {
|
||
|
set_state_git
|
||
|
}
|
||
|
|
||
|
|
||
|
function teardown {
|
||
|
unset_current_state
|
||
|
}
|
||
|
|
||
|
|
||
|
@test "run 'init' without .git" {
|
||
|
remove_git_repository
|
||
|
|
||
|
run git secret init
|
||
|
[ "$status" -eq 1 ]
|
||
|
}
|
||
|
|
||
|
|
||
|
@test "run 'init' normally" {
|
||
|
run git secret init
|
||
|
[ "$status" -eq 0 ]
|
||
|
}
|
||
|
|
||
|
|
||
|
@test "run 'init' with '.gitsecret' already inited" {
|
||
|
mkdir "$SECRETS_DIR"
|
||
|
|
||
|
run git secret init
|
||
|
[ "$output" = "already inited. abort." ]
|
||
|
[ "$status" -eq 1 ]
|
||
|
}
|