How do I Unit Test a MVC redirection?
public ActionResult Create(Product product) { _productTask.Save(product); return RedirectToAction(\"Success\");
you can use Mvc.Contrib.TestHelper which provides assertions for testing redirections. Take a look at http://kbochevski.blogspot.com/2010/06/unit-testing-mvcnet.html and the code sample. It might be helpful.