mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
15 lines
428 B
Go
15 lines
428 B
Go
package protocol
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Encryption Level", func() {
|
|
It("has the correct string representation", func() {
|
|
Expect(EncryptionUnspecified.String()).To(Equal("unknown"))
|
|
Expect(EncryptionInitial.String()).To(Equal("Initial"))
|
|
Expect(EncryptionHandshake.String()).To(Equal("Handshake"))
|
|
Expect(Encryption1RTT.String()).To(Equal("1-RTT"))
|
|
})
|
|
})
|