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

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