Inheritance: UCosmic.Www.Mvc.Controllers.MvcRoute
            public void Inbound_WithPost_MapsToPostAction()
            {
                Expression<Func<PersonInfoController, ActionResult>> action =
                    controller => controller.ByEmail(null);
                var url = new PersonInfoRouter.ByEmailRoute().Url.ToAppRelativeUrl();

                url.WithMethod(HttpVerbs.Post).ShouldMapTo(action);
            }
            public void Inbound_WithPost_MapsToPostAction()
            {
                Expression <Func <PersonInfoController, ActionResult> > action =
                    controller => controller.ByEmail(null);
                var url = new PersonInfoRouter.ByEmailRoute().Url.ToAppRelativeUrl();

                url.WithMethod(HttpVerbs.Post).ShouldMapTo(action);
            }
            public void Outbound_ForPostAction_MapsToUrl()
            {
                Expression<Func<PersonInfoController, ActionResult>> action =
                    controller => controller.ByEmail(null);
                var url = new PersonInfoRouter.ByEmailRoute().Url.ToAppRelativeUrl();

                OutBoundRoute.Of(action).InArea(AreaName).WithMethod(HttpVerbs.Post)
                    .AppRelativeUrl().ShouldEqual(url);
            }
            public void Outbound_ForPostAction_MapsToUrl()
            {
                Expression <Func <PersonInfoController, ActionResult> > action =
                    controller => controller.ByEmail(null);
                var url = new PersonInfoRouter.ByEmailRoute().Url.ToAppRelativeUrl();

                OutBoundRoute.Of(action).InArea(AreaName).WithMethod(HttpVerbs.Post)
                .AppRelativeUrl().ShouldEqual(url);
            }
            public void Inbound_WithNonPost_MapsToNothing()
            {
                var url = new PersonInfoRouter.ByEmailRoute().Url.ToAppRelativeUrl();

                url.WithMethodsExcept(HttpVerbs.Post).ShouldMapToNothing();
            }
            public void Inbound_WithNonPost_MapsToNothing()
            {
                var url = new PersonInfoRouter.ByEmailRoute().Url.ToAppRelativeUrl();

                url.WithMethodsExcept(HttpVerbs.Post).ShouldMapToNothing();
            }