You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-secret/tests/test_init.bats

37 lines
474 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 ]
}
@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 ]
}