Skip to content

Instantly share code, notes, and snippets.

@jhollingworth
Created May 17, 2010 14:38
Show Gist options
  • Save jhollingworth/403838 to your computer and use it in GitHub Desktop.
Save jhollingworth/403838 to your computer and use it in GitHub Desktop.
public static class ActionResultExtensions
{
public static void ShouldBeAPartialView(this ActionResult actionResult)
{
actionResult.ShouldBeOfType<PartialViewResult>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment