aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/t0010-generate-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t0010-generate-tests.sh')
-rwxr-xr-xtests/t0010-generate-tests.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/t0010-generate-tests.sh b/tests/t0010-generate-tests.sh
index da5e41f..cadb76f 100755
--- a/tests/t0010-generate-tests.sh
+++ b/tests/t0010-generate-tests.sh
@@ -10,4 +10,10 @@ test_expect_success 'Test "generate" command' '
[[ $("$PASS" show cred | wc -m) -eq 20 ]]
'
+test_expect_success 'Test replacement of first line' '
+ "$PASS" insert -m cred2 <<<"$(printf "this is a big\\npassword\\nwith\\nmany\\nlines\\nin it bla bla")" &&
+ PATH="$TEST_HOME:$PATH" FAKE_PWGEN_PASSWORD="This is a fake password" "$PASS" generate -i cred2 88 &&
+ [[ $("$PASS" show cred2) == "$(printf "This is a fake password\\npassword\\nwith\\nmany\\nlines\\nin it bla bla")" ]]
+'
+
test_done