aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/template/body_parts_test.rb
blob: 5be8533293d1aee9df39f94a4ebb439ac88816bb (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 index
      RENDERINGS.each do |rendering|
        @template.punctuate_body! rendering
      end
      @performed_render = true
    end
  end

  tests TestController

  def test_body_parts
    get :index
    assert_equal RENDERINGS, @response.body_parts
    assert_equal RENDERINGS.join, @response.body
  end
end