datasources/kmb/routestops_test.go
raw ยท 180 bytes
package kmb
import (
"testing"
)
func TestRouteStops(t *testing.T) {
busStops, err := readBusStopsData()
_, err = getRouteStops(busStops)
if err != nil {
t.Error(err)
}
}
@golifehk bot in Telegram
raw ยท 180 bytes
package kmb
import (
"testing"
)
func TestRouteStops(t *testing.T) {
busStops, err := readBusStopsData()
_, err = getRouteStops(busStops)
if err != nil {
t.Error(err)
}
}