blob: 01548a647d9c7079709a7d7591849d8792c5e3f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
test_description='Show "pass init" returning non-zero bug(?) (XXX: remove this test?)'
. ./setup.sh
test_expect_failure 'Show "pass init" returning non-zero' '
export PASSWORD_STORE_DIR="${SHARNESS_TRASH_DIRECTORY}/test-store/" &&
${PASS} init ${PASSWORD_STORE_KEY}
'
test_done
|