We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca72eb9 commit 8485a94Copy full SHA for 8485a94
1 file changed
constraints_test.go
@@ -309,7 +309,9 @@ 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
{"1.x", "1.4", true},
316
{"!=4.1", "4.1.0", false},
317
{"!=4.1-alpha", "4.1.0-alpha", false},
@@ -493,7 +495,9 @@ func TestConstraintsValidate(t *testing.T) {
493
495
494
496
497
498
499
500
501
502
503
{"!=4.1", "5.1.0", true},
0 commit comments