m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/tests/t0010-generate-tests.sh
blob: 5f373978f78bef3023402c5b0f391eed25af83ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

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

export TEST_CRED="test_cred"
export TEST_CRED_LEN=24

test_expect_success 'Test "generate" command' '
	pass_init &&
	echo Generating credential "${TEST_CRED}" with length ${TEST_CRED_LEN} &&
	$PASS generate "${TEST_CRED}" ${TEST_CRED_LEN} &&
	check_cred "${TEST_CRED}"
'

test_done