golifehk/datasources/mtr/bus/query_test.go

17 lines
203 B
Go
Raw Normal View History

2022-09-14 09:12:48 +00:00
package bus
2022-09-13 13:42:51 +00:00
import (
"fmt"
"testing"
)
func TestQuerySchedule(t *testing.T) {
qo, err := parse( "K74 天瑞" )
if err != nil {
t.Error( err )
}
2022-09-14 09:12:48 +00:00
fmt.Printf( "%+v", qo )
2022-09-13 13:42:51 +00:00
}