From da6fd763c68b6e08f5a7d279ad74f9024f63a332 Mon Sep 17 00:00:00 2001 From: Max Malook Date: Fri, 5 Dec 2014 07:45:51 +0100 Subject: [PATCH] add reproduction for #424 --- tests/Paket.Tests/SemVerSpecs.fs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Paket.Tests/SemVerSpecs.fs b/tests/Paket.Tests/SemVerSpecs.fs index 7be5c46a90..e28984d97b 100644 --- a/tests/Paket.Tests/SemVerSpecs.fs +++ b/tests/Paket.Tests/SemVerSpecs.fs @@ -86,6 +86,7 @@ let ``can normalize versions``() = (SemVer.Parse "1.2.3-alpha.3").Normalize() |> shouldEqual ((SemVer.Parse "1.2.3-alpha.3").ToString()) (SemVer.Parse "1.0.0-alpha").Normalize() |> shouldEqual ((SemVer.Parse "1.0.0-alpha").ToString()) (SemVer.Parse "1.0.0-alpha.1").Normalize() |> shouldEqual ((SemVer.Parse "1.0.0-alpha.1").ToString()) + (SemVer.Parse "0.5.0-ci1411131947").Normalize() |> shouldEqual "0.5.0-ci1411131947" [] let ``can normalize build zeros``() =