password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit 14aa5aba9d5451ba21582637ef1aa8060a75e15c
parent ec97be9a3e93894ca2b6fd17f0846e538e7d35b9
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Wed, 23 Apr 2014 04:12:29 +0200

tests: emulate running agent

Diffstat:
Mtests/setup.sh | 7++++++-
Dtests/t0005-init-failing.sh | 11-----------
2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/tests/setup.sh b/tests/setup.sh @@ -28,7 +28,12 @@ fi # Note: the assumption is the test key is unencrypted. export GNUPGHOME=$(pwd)"/gnupg/" chmod 700 "$GNUPGHOME" -export PASSWORD_STORE_KEY=3DEEA12D # "Password-store Test Key" +export PASSWORD_STORE_KEY="3DEEA12D" # "Password-store Test Key" + +# We don't want to use any running agent. +# We want an agent to appear to pass to be running. +# We don't need a real agent. Hence: +export GPG_AGENT_INFO=" " # pass_init() # diff --git a/tests/t0005-init-failing.sh b/tests/t0005-init-failing.sh @@ -1,11 +0,0 @@ -#!/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