add some simple tests

This commit is contained in:
Lucas Clemente 2016-04-16 23:50:06 +02:00
parent fd485dc50a
commit aa894a6df7
3 changed files with 26 additions and 1 deletions

View file

@ -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())
})
})