m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/tests/t0100-insert-tests.sh
blob: 28c50d212dd7635d781c40a467afdb2a942f4f8c (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