Add negative version comparison test for version suffixes

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
pull/25348/head
Christoph Wurst 3 years ago
parent 3a9c7f99f6
commit 7d9dceb1af
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8

@ -56,6 +56,7 @@ class CompareVersionTest extends TestCase {
['7.4.14', '7.4', '<=', true],
['7.4.14-ubuntu', '7.4', '<=', true],
['7.4.14-ubuntu', '7.4.15', '<=', true],
['7.4.16-ubuntu', '7.4.15', '<=', false],
// Incompatible major versions
['13.0.0.3', '13.0.0', '<', false],
['12.0.0', '13.0.0', '>=', false],

Loading…
Cancel
Save