mirror of
https://github.com/cloudreve/cloudreve.git
synced 2026-06-30 07:46:17 +00:00
14 lines
225 B
Go
14 lines
225 B
Go
package serializer
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestNewRequestSignString(t *testing.T) {
|
|
asserts := assert.New(t)
|
|
|
|
sign := NewRequestSignString("1", "2", "3")
|
|
asserts.NotEmpty(sign)
|
|
}
|