quicvarint: export Min and Max (#3253)

This commit is contained in:
Randy Reddig 2021-08-10 02:11:49 -07:00 committed by GitHub
parent 8ecbb05d44
commit 4a9bd794bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View file

@ -8,6 +8,16 @@ import (
)
var _ = Describe("Varint encoding / decoding", func() {
Context("limits", func() {
Specify("Min == 0", func() {
Expect(Min).To(Equal(0))
})
Specify("Max == 2^62-1", func() {
Expect(uint64(Max)).To(Equal(uint64(1<<62 - 1)))
})
})
Context("decoding", func() {
It("reads a 1 byte number", func() {
b := bytes.NewReader([]byte{0b00011001})