Added a missing unit test and fixed another bug with the RouteMatcher. Bumped package version to 1.3.0
This commit is contained in:
parent
85889973c8
commit
0ee5e98768
@ -10,6 +10,12 @@ namespace MontoyaTech.Rest.Net.Tests
|
||||
{
|
||||
public class RouteMatcherTests
|
||||
{
|
||||
[Fact]
|
||||
public void SyntaxWithPathShouldNotMatchRoot()
|
||||
{
|
||||
RouteMatcher.Matches("http://localhost/", "/test", out _).Should().BeFalse();
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void SyntaxWithRootShouldMatch()
|
||||
{
|
||||
|
@ -17,7 +17,7 @@
|
||||
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
|
||||
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
|
||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||
<Version>1.2.9</Version>
|
||||
<Version>1.3.0</Version>
|
||||
<PackageReleaseNotes></PackageReleaseNotes>
|
||||
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
||||
</PropertyGroup>
|
||||
|
@ -94,6 +94,11 @@ namespace MontoyaTech.Rest.Net
|
||||
{
|
||||
return true;
|
||||
}
|
||||
//If we have a syntaxSegment but no urlSegment, this can't be a match.
|
||||
else if (urlSegment == null && syntaxSegment != null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
//If we have a url segment see if it matches against the syntax segment.
|
||||
else if (urlSegment != null)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user