Add negative version comparison test for version suffixes

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2021-01-27 16:01:26 +01:00
parent 3a9c7f99f6
commit 7d9dceb1af
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
1 changed files with 1 additions and 0 deletions

View File

@ -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],