Skip to content
Snippets Groups Projects
Commit 2cdbdb22 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

adjusted test for parseVersionString

parent 008e1835
No related branches found
No related tags found
No related merge requests found
......@@ -18,11 +18,12 @@ import fsl.version as fslversion
def test_parseVersionString():
tests = [
('0.0.0', [0, 0, 0]),
('0.0.10', [0, 0, 10]),
('10.0.10', [10, 0, 10]),
('10.10.10', [10, 10, 10]),
('10.10.10.dev', [10, 10, 10]),
('0.0.0', [0, 0, 0]),
('0.0.10', [0, 0, 10]),
('10.0.10', [10, 0, 10]),
('10.10.10', [10, 10, 10]),
('10.10.10.dev', [10, 10, 10]),
('10.10.10.dev0', [10, 10, 10]),
# old-style hotfix release numbers
('10.10.10a', [10, 10, 10]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment