forked from quic-go/quic-go
14 lines
191 B
Go
14 lines
191 B
Go
package http09
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestHttp09(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "HTTP/0.9 Suite")
|
|
}
|