-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
87 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
using FluentAssertions; | ||
using Synthesis.Bethesda.Execution; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using Xunit; | ||
|
||
namespace Synthesis.Bethesda.UnitTests | ||
{ | ||
public class NugetVersionQueriesTests | ||
{ | ||
[Fact] | ||
public void TypicalNugetParse() | ||
{ | ||
DotNetQueries.TryParseLibraryLine( | ||
" > Mutagen.Bethesda.Synthesis 0.10.7.0 0.10.7 0.10.8.1", | ||
out var package, | ||
out var requested, | ||
out var resolved, | ||
out var latest) | ||
.Should().BeTrue(); | ||
package.Should().Be("Mutagen.Bethesda.Synthesis"); | ||
requested.Should().Be("0.10.7.0"); | ||
resolved.Should().Be("0.10.7"); | ||
latest.Should().Be("0.10.8.1"); | ||
} | ||
|
||
[Fact] | ||
public void DepreciatedNugetParse() | ||
{ | ||
DotNetQueries.TryParseLibraryLine( | ||
" > Mutagen.Bethesda.Synthesis 0.10.7.0 0.10.7 (D) 0.10.8.1", | ||
out var package, | ||
out var requested, | ||
out var resolved, | ||
out var latest) | ||
.Should().BeTrue(); | ||
package.Should().Be("Mutagen.Bethesda.Synthesis"); | ||
requested.Should().Be("0.10.7.0"); | ||
resolved.Should().Be("0.10.7"); | ||
latest.Should().Be("0.10.8.1"); | ||
} | ||
} | ||
} |