mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-06 15:20:36 +00:00
38 lines
562 B
Bash
38 lines
562 B
Bash
#!/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 ]
|
|
[ "$output" = "repository is broken. try running 'git init' or 'git clone'. abort." ]
|
|
}
|
|
|
|
|
|
@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 ]
|
|
}
|