yao/table/process_test.go
2021-09-28 11:50:37 +08:00

23 lines
338 B
Go

package table
import (
"testing"
"github.com/yaoapp/gou"
)
func TestProcessSearch(t *testing.T) {
args := []interface{}{
"service",
gou.QueryParam{
Wheres: []gou.QueryWhere{
{Column: "status", Value: "enabled"},
},
},
1,
2,
}
process := gou.NewProcess("xiang.table.Search", args...)
processSearch(process)
}