mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-05 08:50:25 +08:00
12 lines
156 B
Go
12 lines
156 B
Go
|
|
package application
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestParseRedisCommand(t *testing.T) {
|
||
|
|
res := parseRedisCommand("del 'key l3'")
|
||
|
|
fmt.Println(res)
|
||
|
|
}
|