mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
22 lines
397 B
Go
22 lines
397 B
Go
package standard
|
|
|
|
import (
|
|
"github.com/labstack/echo/engine/test"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestCookie(t *testing.T) {
|
|
cookie := &Cookie{&http.Cookie{
|
|
Name: "session",
|
|
Value: "securetoken",
|
|
Path: "/",
|
|
Domain: "github.com",
|
|
Expires: time.Date(2016, time.January, 1, 0, 0, 0, 0, time.UTC),
|
|
Secure: true,
|
|
HttpOnly: true,
|
|
}}
|
|
test.CookieTest(t, cookie)
|
|
}
|