(t *testing.T)
| 86 | } |
| 87 | |
| 88 | func TestDeriveKey_TooShort(t *testing.T) { |
| 89 | _, err := deriveKey([]byte("abc")) |
| 90 | assert.Error(t, err) |
| 91 | } |
| 92 | |
| 93 | func TestDeriveKey_Valid(t *testing.T) { |
| 94 | key, err := deriveKey([]byte("mypassword")) |
nothing calls this directly
no test coverage detected