git-secret/tests/test_main.bats
sobolevn 9d0a2ac1c1
Adds fixes to subdirectories bug.
Changes:
1. Fixes #86, now all variables are accessed as functions
2. Fixes #85, now these use cases are working correctly
3. Fixes #83, now init works relative to `.git` folder
4. Closes #77, zsh-plugin is deprecated
5. Refs #53, done some refactoring to tests
6. Closes #82, added additional information to pull-request template
7. Refs #22, plugins are deprecated
8. Also made a lot of improvments into both code and tests
2017-03-06 00:46:49 +03:00

47 lines
693 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"
# This must fail:
run git secret usage
[ "$status" -eq 1 ]
# Dry run won't fail:
run git secret --dry-run
[ "$status" -eq 0 ]
}