public void template_for_model_will_respects_the_absolute_pathing()
 {
     urls.TemplateFor(new ModelWithInputs())
     .ShouldEqual("http://server/fubu/find/${Name}");
 }
 public string TemplateFor(object model, string categoryOrHttpMethod = null)
 {
     return(_inner.TemplateFor(model, categoryOrHttpMethod));
 }