bicycle/bicycle_test.go

12 lines
128 B
Go

package bicycle
import (
"net/http"
"testing"
)
func TestMain(t *testing.T) {
Start()
http.ListenAndServe(":5000", nil)
}