m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/tests/t0020-show-tests.sh
blob: 8e0a69a92fef4ef2ff83542a595c70c0e6bb231e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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