mirror of
				https://github.com/cloudreve/cloudreve.git
				synced 2025-10-31 08:39:10 +08: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)
 | |
| }
 | 
