public void Inbound_WithPost_MapsToPostAction()
            {
                Expression<Func<PersonInfoController, ActionResult>> action =
                    controller => controller.ByGuid();
                var url = new PersonInfoRouter.ByGuidRoute().Url.ToAppRelativeUrl();

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

                url.WithMethod(HttpVerbs.Post).ShouldMapTo(action);
            }