| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fixed assert_redirected_to to handle absolute controller paths properly #1472... | David Heinemeier Hansson | 2005-06-27 | 1 | -4/+23 |
* | Fixed that Functional tests do not set request.path_parameters properly #1512... | David Heinemeier Hansson | 2005-06-26 | 1 | -1/+10 |
* | Updated assert_generates/routing to the new Routes code #1498 [Rick Olson] | David Heinemeier Hansson | 2005-06-25 | 1 | -0/+4 |
* | Eliminate a "string literal in condition" warning from some routes | Jamis Buck | 2005-06-25 | 1 | -0/+12 |
* | Fix problem with symbol/string mismatch on some routes | Jamis Buck | 2005-06-24 | 1 | -0/+7 |
* | Improved performance of Routes generation by a factor of 5 #1434 [Nicholas Se... | David Heinemeier Hansson | 2005-06-24 | 1 | -458/+562 |
* | Include Routing tests in rake run #1287 | David Heinemeier Hansson | 2005-06-21 | 1 | -0/+0 |
* | Added :xhr => true/false option to verify so you can ensure that a request is... | David Heinemeier Hansson | 2005-06-21 | 2 | -0/+48 |
* | Fixed relative urls support for lighttpd #1048 [Nicholas Seckar/maznawak@neri... | David Heinemeier Hansson | 2005-06-18 | 1 | -0/+17 |
* | Fixed query parser to deal gracefully with equal signs inside keys and values... | David Heinemeier Hansson | 2005-06-16 | 1 | -0/+16 |
* | r1318@iwill: jeremy | 2005-06-15 01:08:22 -0700 | Jeremy Kemper | 2005-06-15 | 2 | -62/+65 |
* | render(:template) applies a layout by default. render("foo/bar") works with a... | Jamis Buck | 2005-06-15 | 2 | -15/+11 |
* | Fixed double-singularization on scaffolded pagination call (Address would be ... | David Heinemeier Hansson | 2005-06-15 | 1 | -0/+45 |
* | Support :render option to :verify #1440 [TobiasLuetke] | Jamis Buck | 2005-06-14 | 1 | -1/+17 |
* | Fix broken test case caused by change of testing address from 127.0.0.1 to 0.... | Jamis Buck | 2005-06-14 | 1 | -1/+1 |
* | Arrays sent via multipart posts are converted to strings #1032 [dj@omelia.org] | Jamis Buck | 2005-06-10 | 1 | -0/+5 |
* | render(:action) and render() are the only two render calls to use a layout by... | Jamis Buck | 2005-06-01 | 1 | -2/+3 |
* | render(:inline) defaults to :layout => false | Jamis Buck | 2005-05-30 | 1 | -1/+12 |
* | Make sure the benchmarking render method always returns the result of the ren... | Jamis Buck | 2005-05-30 | 2 | -25/+15 |
* | render(:text), render(:partial), and render(:nothing) always default to :layo... | Jamis Buck | 2005-05-30 | 2 | -1/+14 |
* | verify with :redirect_to won't redirect if a redirect or render has already b... | Jamis Buck | 2005-05-30 | 1 | -29/+44 |
* | render(:partial => "...") uses an empty hash for the local assigns #1365. ren... | Jamis Buck | 2005-05-30 | 1 | -2/+2 |
* | Updated unit test style | David Heinemeier Hansson | 2005-05-22 | 1 | -48/+43 |
* | Test for no layout on nothing | David Heinemeier Hansson | 2005-05-22 | 1 | -1/+10 |
* | Deprecated all render_* methods in favor of consolidating all rendering behav... | David Heinemeier Hansson | 2005-05-22 | 1 | -13/+13 |
* | Deprecated redirect_to_path and redirect_to_url in favor of letting redirect_... | David Heinemeier Hansson | 2005-05-22 | 3 | -5/+258 |
* | Fixed assert_redirect_to to work with redirect_to_path #869 [Nicholas Seckar] | David Heinemeier Hansson | 2005-05-19 | 1 | -1/+16 |
* | Fixed Request#remote_ip in testing #1251 [bitsweat] | David Heinemeier Hansson | 2005-05-19 | 1 | -0/+33 |
* | Added accessors to logger, params, response, session, and headers from the vi... | David Heinemeier Hansson | 2005-05-19 | 1 | -0/+10 |
* | Fixed action/fragment caching using the filestore when a directory and a file... | David Heinemeier Hansson | 2005-04-30 | 1 | -0/+92 |
* | Fixed assert_redirected_to to work with :only_path => false #1204 [Alisdair M... | David Heinemeier Hansson | 2005-04-30 | 1 | -1/+10 |
* | Added support for web servers that use PATH_INFO instead of REQUEST_URI like ... | David Heinemeier Hansson | 2005-04-18 | 1 | -1/+44 |
* | Added assert_tag and assert_no_tag as a much improved alternative to the depr... | David Heinemeier Hansson | 2005-04-17 | 1 | -0/+37 |
* | Deprecated the majority of all the testing assertions and replaced them with ... | David Heinemeier Hansson | 2005-04-17 | 1 | -2/+1 |
* | Added that render_partial called from a controller will use the action name a... | David Heinemeier Hansson | 2005-04-17 | 1 | -0/+9 |
* | Clean up load paths to avoid unit test interaction #1113 [alles@atomicobject.... | David Heinemeier Hansson | 2005-04-17 | 2 | -13/+0 |
* | Fixed that *rest parameter in map.connect couldn't accept an empty list #1037... | David Heinemeier Hansson | 2005-04-13 | 1 | -1/+4 |
* | Added simulation of @request.request_uri in functional tests #1038 [Jamis Buck] | David Heinemeier Hansson | 2005-04-07 | 1 | -0/+25 |
* | Removed broken attempt to DRY module ClassMethod #970 | David Heinemeier Hansson | 2005-04-02 | 1 | -1/+1 |
* | Added assert_no_cookie and fixed assert_cookie_equal to deal with non-existin... | David Heinemeier Hansson | 2005-04-02 | 1 | -1/+11 |
* | Added :method option to verify for ensuring that either GET, POST, etc is all... | David Heinemeier Hansson | 2005-04-02 | 1 | -0/+21 |
* | Added fourth option to process in test cases to specify the content of the fl... | David Heinemeier Hansson | 2005-03-26 | 1 | -0/+25 |
* | Added Verifications that allows you to specify preconditions to actions in fo... | David Heinemeier Hansson | 2005-03-26 | 1 | -0/+137 |
* | Removed old UrlWriter methods that are no longer in use after Routes #942 | David Heinemeier Hansson | 2005-03-26 | 2 | -488/+1 |
* | Routes: *path items should use arrays #883 | David Heinemeier Hansson | 2005-03-21 | 1 | -2/+12 |
* | Routes: Convert results of #to_param to strings #879 | David Heinemeier Hansson | 2005-03-20 | 1 | -0/+7 |
* | Changed .htaccess to allow dispatch.* to be called from a sub-directory as pa... | David Heinemeier Hansson | 2005-03-20 | 1 | -0/+34 |
* | Added a much improved Flash module that allows for finer-grained control on e... | David Heinemeier Hansson | 2005-03-20 | 2 | -7/+31 |
* | Added path collection syntax for Routes that will gobble up the rest of the u... | David Heinemeier Hansson | 2005-03-20 | 1 | -0/+9 |
* | Removed the reliance on PATH_INFO as it was causing problems for caching and ... | David Heinemeier Hansson | 2005-03-14 | 1 | -11/+0 |