aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/output_buffer_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* All tests pass without memoizing view_contextCarlhuda2010-03-181-7/+8
|
* Modify assert_template to use notifications. Also, remove ↵Carlhuda2010-03-171-9/+9
| | | | ActionController::Base#template since it is no longer needed.
* Ruby 1.9: flushing the output buffer preserves its encodingJeremy Kemper2009-05-281-0/+11
|
* Reinstate pending output buffer testsJeremy Kemper2009-05-281-28/+36
|
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-111-20/+26
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: actionpack/lib/action_controller/abstract/callbacks.rb actionpack/lib/action_controller/abstract/renderer.rb actionpack/lib/action_controller/base/base.rb actionpack/lib/action_controller/dispatch/dispatcher.rb actionpack/lib/action_controller/routing/route_set.rb actionpack/lib/action_controller/testing/process.rb actionpack/test/abstract_controller/layouts_test.rb actionpack/test/controller/filters_test.rb actionpack/test/controller/helper_test.rb actionpack/test/controller/render_test.rb actionpack/test/new_base/test_helper.rb
| * Functional test runner finalizes response just like the integration test ↵Joshua Peek2009-05-021-18/+24
|/ | | | | runner. In both runners, the @response object will now behave the same. Some functional tests will need to be updated if they are relying on preprocessed data on the response.
* Deprecate template, session, assigns, and layout accessors on response ↵Joshua Peek2009-04-281-9/+9
| | | | object. Instead access them through the controller instance. This mainly affects functional test assertions.
* Extract output buffer testJeremy Kemper2009-03-131-0/+35
|
* Body parts: future rendering, threaded future, queued future, open-uri exampleJeremy Kemper2009-03-131-35/+0
|
* Introduce flush_output_buffer to append the buffer to the response body then ↵Jeremy Kemper2009-03-131-0/+35
start a new buffer. Useful for pushing custom parts to the response body without disrupting template rendering.