gopass/tests/audit_test.go
Tom Payne 7e3c54d1f9
[feat] Remove expensive and unmaintained zxcvbn-go strength checker (#3133)
Signed-off-by: Tom Payne <twpayne@gmail.com>
2025-04-20 20:47:26 +02:00

23 lines
375 B
Go

package tests
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestAudit(t *testing.T) {
ts := newTester(t)
defer ts.teardown()
ts.initStore()
ts.initSecrets("")
t.Run("audit the test store", func(t *testing.T) {
out, err := ts.run("audit")
require.Error(t, err)
assert.Contains(t, out, "crunchy")
})
}