git-secret/tests/test_main.bats
Josh Rabinowitz 07af0c19b6
Varnames output and typos (#441)
* rename variable, fix typo, improve comments and output
* fix directory removal after testing
* mention improved user messaging in CHANGELOG.md
2019-03-23 19:48:08 -04:00

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 ]
}