1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-28 08:38:39 +02:00
echo/response_test.go
Vishal Rana 8f7c55e0ac Refactored response
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-04-09 11:04:33 -07:00

28 lines
479 B
Go

package echo
import (
"net/http"
"net/http/httptest"
"testing"
)
func TestResponse(t *testing.T) {
e := New()
e.Get("/hello", func(c *Context) {
c.String(http.StatusOK, "world")
// Status
if c.Response.Status() != http.StatusOK {
t.Error("status code should be 200")
}
// Size
if c.Response.Status() != http.StatusOK {
t.Error("size should be 5")
}
})
w := httptest.NewRecorder()
r, _ := http.NewRequest("GET", "/hello", nil)
e.ServeHTTP(w, r)
}