mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-04-21 22:22:06 +02:00
Added version_to_list() regression test for found error.
This commit is contained in:
parent
6100cae586
commit
948e76d992
@ -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…
x
Reference in New Issue
Block a user