blob: e5864ff5cd39e8e1b1606ef1b914a9fa1bf8fa48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
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
|