Add all of the zcash release tags in my current repo as positive test vector.

This commit is contained in:
Nathan Wilcox 2017-05-19 12:20:14 -07:00
parent 987d040660
commit a93f4de2f6
1 changed files with 18 additions and 0 deletions

View File

@ -107,6 +107,24 @@ class TestVersion (unittest.TestCase):
'v1.0.0',
'v1.0.0-7',
'v1.2.3-1',
# These are taken from: git tag --list | grep '^v1'
'v1.0.0',
'v1.0.0-beta1',
'v1.0.0-beta2',
'v1.0.0-rc1',
'v1.0.0-rc2',
'v1.0.0-rc3',
'v1.0.0-rc4',
'v1.0.1',
'v1.0.2',
'v1.0.3',
'v1.0.4',
'v1.0.5',
'v1.0.6',
'v1.0.7-1',
'v1.0.8',
'v1.0.8-1',
]
for case in cases: