mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
add some simple tests
This commit is contained in:
parent
fd485dc50a
commit
aa894a6df7
3 changed files with 26 additions and 1 deletions
|
@ -21,4 +21,9 @@ var _ = Describe("Version", func() {
|
|||
It("has proper tag list", func() {
|
||||
Expect(protocol.SupportedVersionsAsTags).To(Equal([]byte("Q030Q032")))
|
||||
})
|
||||
|
||||
It("recognizes supported versions", func() {
|
||||
Expect(protocol.IsSupportedVersion(0)).To(BeFalse())
|
||||
Expect(protocol.IsSupportedVersion(protocol.SupportedVersions[0])).To(BeTrue())
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue