mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add a buffer pool test for wrong-sized puts
This commit is contained in:
parent
3e42d1da0f
commit
0696cd51bf
2 changed files with 6 additions and 1 deletions
|
@ -23,4 +23,10 @@ var _ = Describe("Buffer Pool", func() {
|
|||
Expect(buf).To(HaveCap(int(protocol.MaxPacketSize)))
|
||||
}
|
||||
})
|
||||
|
||||
It("panics if wrong-sized buffers are passed", func() {
|
||||
Expect(func() {
|
||||
putPacketBuffer([]byte{0})
|
||||
}).To(Panic())
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue