m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/tests/t0100-insert-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t0100-insert-tests.sh')
-rwxr-xr-xtests/t0100-insert-tests.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/t0100-insert-tests.sh b/tests/t0100-insert-tests.sh
new file mode 100755
index 0000000..f1349c4
--- /dev/null
+++ b/tests/t0100-insert-tests.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+test_description='Test insert'
+. ./setup.sh
+
+export TEST_CRED="test_cred"
+export TEST_PASSWORD="Hello world"
+
+test_expect_success 'Test "insert" command' '
+ pass_init &&
+ echo "$TEST_PASSWORD" | ${PASS} insert -e "$TEST_CRED" &&
+ verify_password "$TEST_CRED" "$TEST_PASSWORD"
+'
+
+test_done