aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/test_case.rb
Commit message (Expand)AuthorAgeFilesLines
...
* | disable controller / view thread spawning in testsAaron Patterson2016-02-051-0/+10
|/
* remove `present?` callsAaron Patterson2016-01-121-4/+4
* monkey patch `recycle!` on to controllers onceAaron Patterson2016-01-121-4/+4
* Remove ActionController::TestCase from documentationeileencodes2015-12-121-0/+4
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-10-311-2/+2
|\
| * Improved readability of Assertion docs, replaced ‘Assert’ -> ‘Assertsâ€...amitkumarsuroliya2015-10-091-2/+2
* | use `dispatch` instead of `process` to run requests thougheileencodes2015-10-291-4/+3
* | Write the cookie jar it was not committed in TestCaseRafael Mendonça França2015-10-281-1/+1
* | Use `Mime[:foo]` instead of `Mime::Type[:FOO]` for back compatJeremy Daer2015-10-061-3/+3
|/
* stop applying default headers in ActionDispatch::ResponseAaron Patterson2015-09-231-1/+1
* stop calling deprecated methodsAaron Patterson2015-09-211-3/+3
* remove outdated commentAaron Patterson2015-09-181-4/+0
* all parameter parsing is done through the request object now.Aaron Patterson2015-09-181-1/+1
* let the request object handle parsing XML postsAaron Patterson2015-09-181-2/+9
* remove setting request parameters for JSON requestsAaron Patterson2015-09-181-2/+0
* Handle Content-Types that are not :json, :xml, or :url_encoded_formeileencodes2015-09-091-2/+5
* stop using deprecated Abstract::ID classAaron Patterson2015-09-041-1/+1
* stop inheriting from Rack::RequestAaron Patterson2015-09-041-4/+4
* Fix bug where cookies mutated by request were not persistedeileencodes2015-09-011-0/+1
* Updating TestSession to access with indifferenceJeremy Friesen2015-08-261-2/+2
* remove more direct `env` mutationsAaron Patterson2015-08-241-1/+3
* rm useless methodAaron Patterson2015-08-241-4/+0
* remove more `env` accessAaron Patterson2015-08-231-11/+19
* remove more env accessAaron Patterson2015-08-231-3/+3
* remove more env accessAaron Patterson2015-08-231-4/+6
* convert more `@env` access to get / set headerAaron Patterson2015-08-231-1/+1
* Fix master buildMarcin Olichwirowicz2015-08-171-0/+1
* Refactor how assign_parameters sets generated_path & query_string_keyseileencodes2015-08-151-8/+20
* Rename `extra_keys` variables to `query_string_keys`eileencodes2015-08-081-2/+2
* Adds missing argument handling for ActionController::TestSession toMatthew Gerrior2015-08-061-0/+4
* Rack implements `redirect?` so we don't need itAaron Patterson2015-07-141-3/+0
* Change AC::TestResponse to AD::TestResponsePrem Sichanugrist2015-07-141-1/+1
* only have one TestResponse classAaron Patterson2015-07-131-4/+1
* move buffer caching on to the bufferAaron Patterson2015-07-131-4/+0
* we don't really need an extra method to set the script nameAaron Patterson2015-07-101-5/+1
* Remove useless conditionalAaron Patterson2015-07-101-12/+0
* default `PATH_INFO` to the generated pathAaron Patterson2015-07-101-1/+2
* always default the SCRIPT_NAME to whatever is on the controllerAaron Patterson2015-07-101-1/+1
* remove useless ivar clearingAaron Patterson2015-07-101-6/+0
* call the `path_parameters=` setter rather than rely on mutationsAaron Patterson2015-07-101-1/+3
* start collecting `env` mutationsAaron Patterson2015-07-101-5/+3
* Parameters are converted to a query stringAaron Patterson2015-07-101-17/+0
* no more HWIAAaron Patterson2015-07-101-1/+1
* remove param dup'ing logicAaron Patterson2015-07-101-8/+0
* encode / decode parameters before assigning them to the requestAaron Patterson2015-07-101-5/+58
* set parameters as a query stringAaron Patterson2015-07-091-6/+9
* build and assign parameters rather than rely on mutationsAaron Patterson2015-07-081-1/+15
* assign the cookie hash on request allocationAaron Patterson2015-07-081-1/+1
* request objects are no longer recycledAaron Patterson2015-07-081-10/+8
* add a new constructor for allocating test requestsAaron Patterson2015-07-081-11/+13