mirror of
https://github.com/gopasspw/gopass.git
synced 2025-12-08 19:24:54 +00:00
23 lines
375 B
Go
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")
|
|
})
|
|
}
|