Skip to content
Snippets Groups Projects
t0001-sanity-checks.sh 342 B
Newer Older
#!/bin/bash

test_description='Sanity checks'
. ./setup.sh

test_expect_success 'Make sure we can run pass' '
	${PASS} --help | grep "pass: the standard unix password manager"
'

test_expect_success 'Make sure we can initialize our test store' '
	pass_init &&
	ls -ld "${PASSWORD_STORE_DIR}" &&
	[[ -d "${PASSWORD_STORE_DIR}" ]]
'

test_done