iris/httptest/httptest_go19.go
Gerasimos (Makis) Maropoulos a7635afe62 add experimental handlers examples
Former-commit-id: 8d8a0d15afce2554dc5926f6b9bd9c42cb95dad0
2019-08-16 16:57:03 +03:00

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
)