blob: 5159ac7d8d11d79e6b9ab0f67f1100c143a20465 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
test_description='Test rm'
. ./setup.sh
export TEST_CRED="test_cred"
test_expect_success 'Test "rm" command' '
pass_init &&
create_cred "${TEST_CRED}" &&
echo "Removing $TEST_CRED" &&
echo "y" | ${PASS} rm "${TEST_CRED}" &&
check_no_cred "${TEST_CRED}"
'
test_expect_success 'Test "rm" of non-existent password' '
test_must_fail ${PASS} rm does-not-exist
'
test_done
|