Adding base test for crypt

This commit is contained in:
Alex Epstein 2017-07-10 16:09:58 -04:00
parent ae14194e74
commit 684a962eb3
1 changed files with 31 additions and 0 deletions

31
tests/crypt.bats Executable file
View File

@ -0,0 +1,31 @@
#!/bin/env bats
@test "Testing crypt tool" {
echo crypt
}
@test "Check for latest version of bash-snippets on update" {
run crypt update
[ "$status" -eq 0 ]
[ "$output" = "Bash-Snippets is already the latest version" ]
}
@test "The -h option should print usage" {
run crypt -h
[ "$status" -eq 0 ]
[ "${lines[0]}" = "Crypt" ]
}
@test "No arguments prints usage instructions" {
run crypt
[ "$status" -eq 0 ]
[ "${lines[0]}" = "Crypt" ]
}
@test "Get the tools version with -v" {
run crypt -v
[ "$status" -eq 0 ]
result=$( echo $(crypt -v) | grep -Eo "Version")
[ "$result" = "Version" ]
}