public void retrieve_a_url_for_a_model_that_has_querystring_inputs()
        {
            var model = new ModelWithQueryStringInput()
            {
                Param = 42
            };

            urls.UrlFor(model).ShouldEqual("http://server/fubu/qs/test?Param=42");
        }
 public void get_qs_test(ModelWithQueryStringInput input)
 {
 }
        public void retrieve_a_url_for_a_model_that_has_querystring_inputs()
        {
            var model = new ModelWithQueryStringInput() {Param = 42};

            urls.UrlFor(model).ShouldEqual("/qs/test?Param=42");
        }
 public void get_qs_test(ModelWithQueryStringInput input)
 {
 }