mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
Integrate OAuth2 Provider (#5378)
This commit is contained in:
committed by
techknowlogick
parent
9d3732dfd5
commit
e777c6bdc6
22
modules/secret/secret_test.go
Normal file
22
modules/secret/secret_test.go
Normal file
@@ -0,0 +1,22 @@
|
||||
// Copyright 2019 The Gitea Authors. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package secret
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestNew(t *testing.T) {
|
||||
result, err := New()
|
||||
assert.NoError(t, err)
|
||||
assert.True(t, len(result) > 32)
|
||||
|
||||
result2, err := New()
|
||||
assert.NoError(t, err)
|
||||
// check if secrets
|
||||
assert.NotEqual(t, result, result2)
|
||||
}
|
Reference in New Issue
Block a user