1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-24 08:22:21 +02:00
echo/response_test.go
Vishal Rana 2e7f411a85 Coverage bumped to 80%
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-03-30 21:06:21 -07:00

36 lines
634 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")
}
// TODO: fix us later
c.Response.CloseNotify()
c.Response.Flusher()
c.Response.Hijack()
// Reset
c.Response.reset(c.Response.ResponseWriter)
})
w := httptest.NewRecorder()
r, _ := http.NewRequest("GET", "/hello", nil)
e.ServeHTTP(w, r)
}