aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/t0001-sanity-checks.sh
blob: f20664e9c679fde823a58db108d6f4d64502edc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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