1
0
mirror of https://github.com/labstack/echo.git synced 2025-04-02 22:05:34 +02:00

Shorten Github issue template and add test example

This commit is contained in:
toimtoimtoim 2024-11-22 21:45:51 +02:00 committed by Martti T.
parent 118c1632f2
commit 9e73691837
2 changed files with 26 additions and 14 deletions

View File

@ -1,23 +1,32 @@
### Issue Description
### Checklist
- [ ] Dependencies installed
- [ ] No typos
- [ ] Searched existing issues and docs
### Expected behaviour
### Actual behaviour
### Steps to reproduce
### Working code to debug
```go
package main
func main() {
import (
"github.com/labstack/echo/v4"
"net/http"
"net/http/httptest"
"testing"
)
func TestExample(t *testing.T) {
e := echo.New()
e.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!")
})
req := httptest.NewRequest(http.MethodGet, "/", nil)
rec := httptest.NewRecorder()
e.ServeHTTP(rec, req)
if rec.Code != http.StatusOK {
t.Errorf("got %d, want %d", rec.Code, http.StatusOK)
}
}
```

View File

@ -75,6 +75,7 @@ package main
import (
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"log/slog"
"net/http"
)
@ -90,7 +91,9 @@ func main() {
e.GET("/", hello)
// Start server
e.Logger.Fatal(e.Start(":1323"))
if err := e.Start(":8080"); err != nil && !errors.Is(err, http.ErrServerClosed) {
slog.Error("failed to start server", "error", err)
}
}
// Handler