m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/tests/t0020-show-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t0020-show-tests.sh')
-rwxr-xr-xtests/t0020-show-tests.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/t0020-show-tests.sh b/tests/t0020-show-tests.sh
new file mode 100755
index 0000000..8e0a69a
--- /dev/null
+++ b/tests/t0020-show-tests.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+test_description='Test show'
+. ./setup.sh
+
+export TEST_CRED="test_cred"
+
+test_expect_success 'Test "show" command' '
+ pass_init &&
+ create_cred "$TEST_CRED" &&
+ ${PASS} show "$TEST_CRED"
+'
+
+test_expect_success 'Test "show" of nonexistant password' '
+ pass_init &&
+ test_must_fail ${PASS} show "$TEST_CRED"
+'
+test_done