mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
c558e039d5
Former-commit-id: 6ac95ef58bf3dd0dac8bed2100495fa9908f41d4
18 lines
465 B
Go
18 lines
465 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/kataras/iris/v12/httptest"
|
|
)
|
|
|
|
func TestNewConditionalHandler(t *testing.T) {
|
|
app := newApp()
|
|
e := httptest.New(t, app)
|
|
|
|
e.GET("/api/v1/users").Expect().Status(httptest.StatusOK).
|
|
Body().Equal("requested: <b>/api/v1/users</b>")
|
|
e.GET("/api/v1/users").WithQuery("admin", "true").Expect().Status(httptest.StatusOK).
|
|
Body().Equal("<title>Admin</title>\n<h1>Hello Admin</h1><br>requested: <b>/api/v1/users</b>")
|
|
}
|