blob: 92cb785c7fa4770b94262b25381b6273ee0feab2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
test_description='Sanity checks'
cd "$(dirname "$0")"
. ./setup.sh
test_expect_success 'Make sure we can run pass' '
"$PASS" --help | grep "pass: the standard unix password manager"
'
test_expect_success 'Make sure we can initialize our test store' '
"$PASS" init $KEY1 &&
[[ -e "$PASSWORD_STORE_DIR/.gpg-id" ]] &&
[[ $(cat "$PASSWORD_STORE_DIR/.gpg-id") == "$KEY1" ]]
'
test_done
|