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