Files
mayfly-go/server/internal/redis/application/redis_test.go

12 lines
156 B
Go
Raw Normal View History

package application
import (
"fmt"
"testing"
)
func TestParseRedisCommand(t *testing.T) {
res := parseRedisCommand("del 'key l3'")
fmt.Println(res)
}