m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/tests/t0100-insert-tests.sh
blob: 6194ceb1f662db9f4faced283e826368a49fd6b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

test_description='Test insert'
. ./setup.sh

test_expect_success 'Test "insert" command' '
	"$PASS" init $KEY1 &&
	echo "Hello world" | "$PASS" insert -e cred1 &&
	[[ $("$PASS" show cred1) == "Hello world" ]]
'

test_done