Purify-net / PUrify

PUrify
Apache License 2.0
11 stars 6 forks source link

Fix failing mono tests #25

Closed Mpdreamz closed 10 years ago

Mpdreamz commented 10 years ago

I noticed two tests were failing in mono

PUrify.Tests.PurifyTest+ThePurifyMethod.CanHandleAbsoluteOrRelativeUri_RelativeGiven [FAIL] PUrify.Tests.PurifyTest+ThePurifyMethod.CanHandleRelativeUri [FAIL]

Because inside the UriInfo we access the .Host property, This throws on mono but works fine in .NET.

I fixed this by making .Purify() on non absolute uri's (those explictly marked with UriKind.Relative) a noop.