mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-24 01:24:08 +09:00
13 lines
191 B
Go
13 lines
191 B
Go
package secrets
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNopMasterKey_IsSealed(t *testing.T) {
|
|
k := NewNopMasterKeyProvider()
|
|
assert.False(t, k.IsSealed())
|
|
}
|