AnthonySteele / MvcRouteTester

A library for unit testing ASP MVC route tables for both Web and API Routes
Apache License 2.0
105 stars 43 forks source link

UrlDecoding is not performed when extracting values #41

Open otac0n opened 10 years ago

otac0n commented 10 years ago
config.ShouldMap("/orders?q=a%3AOK").To<OrdersController>(HttpMethod.Get, c => c.Find("a:OK"))

MvcRouteTester.Assertions.AssertionException : Expected 'a:OK', not 'a%3AOK' for 'q' at url '/orders?q=a%3AOK'.