mirror of
https://github.com/kataras/iris.git
synced 2025-02-09 18:46:19 +01:00
13 lines
186 B
Go
13 lines
186 B
Go
// +build go1.9
|
|
|
|
package httptest
|
|
|
|
import "github.com/gavv/httpexpect"
|
|
|
|
type (
|
|
// Request type alias.
|
|
Request = httpexpect.Request
|
|
// Expect type alias.
|
|
Expect = httpexpect.Expect
|
|
)
|