mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Added version_to_list() regression test for found error.
This commit is contained in:
parent
6100cae586
commit
948e76d992
2 changed files with 2 additions and 1 deletions
|
@ -43,6 +43,7 @@ module test_version_to_list() {
|
|||
assert(version_to_list(2.010001)==[2,1,1]);
|
||||
assert(version_to_list("2.1.1")==[2,1,1]);
|
||||
assert(version_to_list([2,1,1])==[2,1,1]);
|
||||
assert(version_to_list(2.010035)==[2,1,35]);
|
||||
assert(version_to_list(2.345678)==[2,34,5678]);
|
||||
assert(version_to_list("2.34.5678")==[2,34,5678]);
|
||||
assert(version_to_list([2,34,5678])==[2,34,5678]);
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,4];
|
||||
BOSL_VERSION = [2,0,5];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue