mirror of
https://github.com/kataras/iris.git
synced 2025-12-18 10:27:06 +00:00
add simple tests for _examples/mvc/hello-world and session-controller
Former-commit-id: d88a792ba57cd869d2888f41bca6eb3e5b4f7d49
This commit is contained in:
21
_examples/mvc/session-controller/main_test.go
Normal file
21
_examples/mvc/session-controller/main_test.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/kataras/iris/httptest"
|
||||
)
|
||||
|
||||
func TestMVCSession(t *testing.T) {
|
||||
e := httptest.New(t, newApp(), httptest.URL("http://example.com"))
|
||||
|
||||
e1 := e.GET("/").Expect().Status(httptest.StatusOK)
|
||||
e1.Cookies().NotEmpty()
|
||||
e1.Body().Contains("1 visit")
|
||||
|
||||
e.GET("/").Expect().Status(httptest.StatusOK).
|
||||
Body().Contains("2 visit")
|
||||
|
||||
e.GET("/").Expect().Status(httptest.StatusOK).
|
||||
Body().Contains("3 visit")
|
||||
}
|
||||
Reference in New Issue
Block a user