File: 10_noinit.sh

package info (click to toggle)
pass-tomb 1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 264 kB
  • sloc: sh: 608; makefile: 55
file content (16 lines) | stat: -rwxr-xr-x 385 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash
# shellcheck disable=SC2016,SC1091

export test_description="pass-tomb without store initialisation."
cd tests
source ./commons

test_export noinit
test_expect_success 'Testing password store creation without store initialisation' '
    _pass tomb $KEY1 --no-init --verbose --unsafe &&
    _pass init $KEY2 &&
    _pass_populate &&
    _pass close
    '

test_done