This commit is contained in:
suyl
2021-04-27 16:05:39 +08:00
parent 5cefb7e751
commit 8bd8f7fdd5
2 changed files with 75 additions and 0 deletions

View File

@@ -24,3 +24,11 @@ func TestGoodsSearch(t *testing.T) {
}
t.Log(utils.Format4Output(result, false))
}
func TestGoodsDetail(t *testing.T) {
result, err := api.GoodsDetail("Y9j2gIAgrxpKWDjRwfDZdyHfazgTDQpH_JyzHgT6ly")
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}