blob: 5f582aa89dd2a1578ff5138f1277d420eeb83851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
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
|