14 lines
165 B
Go
14 lines
165 B
Go
package api
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSingleReq(t *testing.T) {
|
|
body := DetailReq{
|
|
ScriptId: "52586724875648103",
|
|
CityCode: "310000",
|
|
}
|
|
detail(body)
|
|
}
|