新增投诉骑手接口

This commit is contained in:
苏尹岚
2019-12-23 15:28:16 +08:00
parent c978ca1b44
commit 0260014f1e
4 changed files with 62 additions and 0 deletions

View File

@@ -62,3 +62,10 @@ func TestCancelOrder(t *testing.T) {
handleError(t, err)
sugarLogger.Debug(result)
}
func TestEvaluateRider(t *testing.T) {
err := api.EvaluateRider(123456789, "1529387562097059", 1, "just a test")
if err != nil {
t.Fatal(err)
}
}