mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
a7635afe62
Former-commit-id: 8d8a0d15afce2554dc5926f6b9bd9c42cb95dad0
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
|
|
)
|