aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/template/body_parts_test.rb
blob: 69cf6840839938cb3460aaa400494a40c930d923 (plain) (tree)
1
2
3
4
5
6
7
8
9
                       
 

                                                   

                                               
                              
 
             
                                    
                                              
         
       



                      
                     
              


                                                  
                                                

     
require 'abstract_unit'

class BodyPartsTest < ActionController::TestCase
  RENDERINGS = [Object.new, Object.new, Object.new]

  class TestController < ActionController::Base
    def response_body() "" end

    def index
      RENDERINGS.each do |rendering|
        view_context.punctuate_body! rendering
      end
    end
  end

  tests TestController

  def test_body_parts
    get :index
    # TestProcess buffers body_parts into body
    # TODO: Rewrite test w/o going through process
    assert_equal RENDERINGS, @response.body_parts
    assert_equal RENDERINGS.join, @response.body
  end
end