Hi I am finding that a common breakage point in our mvc setup is when the controller returns
return View();
or whatever, and the viewengine cannot find the view.
I would like to be able to test my controllers and then run ExecuteResult on the resulting ViewResult but the underlying ViewEngine is so tied to virtual directories that I can't figure out how to test it.
Ideally I would actually like to be able to render the view as well as determining if it has been found.
I can't find too much about this on the net and I am wondering just how 'testable' asp.net mvc actually is :(