From 684a962eb38e0d217f15f3a4b0c72808291fa5b6 Mon Sep 17 00:00:00 2001 From: Alex Epstein Date: Mon, 10 Jul 2017 16:09:58 -0400 Subject: [PATCH] Adding base test for crypt --- tests/crypt.bats | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 tests/crypt.bats diff --git a/tests/crypt.bats b/tests/crypt.bats new file mode 100755 index 0000000..35e9bdd --- /dev/null +++ b/tests/crypt.bats @@ -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" ] +}