anybody knows how to mock Url.Content(\"~\") ?
Url.Content(\"~\")
(BTW: I\'m using Moq)
controller.Url = Substitute.ForPartsOf(); controller.Url.Content("~").Returns("path");
Fell free with ForPartsOf (Partial subs and test spies) in NUnit