git-secret/tests/test_usage.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

37 lines
459 B
Bash

#!/usr/bin/env bats
load _test_base
function setup {
set_state_initial
set_state_git
}
function teardown {
unset_current_state
}
@test "run 'usage'" {
run git secret usage
[ "$status" -eq 0 ]
}
@test "run 'usage' without '.git/'" {
remove_git_repository
run git secret usage
[ "$status" -eq 1 ]
}
@test "run 'usage' with ignored '.gitsecret/'" {
echo ".gitsecret/" >> ".gitignore"
run git secret usage
[ "$status" -eq 1 ]
}