We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca72eb9 commit 18d9dd3Copy full SHA for 18d9dd3
constraints_test.go
@@ -309,7 +309,10 @@ func TestConstraintsCheck(t *testing.T) {
309
{"= 2.0", "1.2.3", false},
310
{"= 2.0", "2.0.0", true},
311
{"4.1", "4.1.0", true},
312
+ {"4.1", "4.1.3+alpha", true},
313
{"4.1.x", "4.1.3", true},
314
+ {"4.1.x", "4.1.3+alpha", true},
315
+ {"4.1.3", "4.1.3+alpha", true},
316
{"1.x", "1.4", true},
317
{"!=4.1", "4.1.0", false},
318
{"!=4.1-alpha", "4.1.0-alpha", false},
@@ -493,7 +496,10 @@ func TestConstraintsValidate(t *testing.T) {
493
496
494
497
495
498
499
500
501
502
503
504
505
{"!=4.1", "5.1.0", true},
0 commit comments