Files
golifehk/datasources/kmb/routestops_test.go
2026-03-10 15:18:34 +08:00

14 lines
180 B
Go

package kmb
import (
"testing"
)
func TestRouteStops(t *testing.T) {
busStops, err := readBusStopsData()
_, err = getRouteStops(busStops)
if err != nil {
t.Error(err)
}
}