Files
baseapi/platformapi/mtpsapi/shop_test.go
gazebo 1fbb2eac0f - 将美团配送门店相关的API单独拆分出来
- 去掉美团配送CheckCallbackValidation中的强制参数检查
2019-07-23 14:53:09 +08:00

13 lines
182 B
Go

package mtpsapi
import (
"testing"
)
func TestSimulateShopStatus(t *testing.T) {
err := api.SimulateShopStatus("1", ShopStatusAuditRejected)
if err != nil {
t.Fatal(err)
}
}