1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/template/body_parts_test.rb
2009-05-26 15:19:39 -07:00

29 lines
715 B
Ruby

require 'abstract_unit'
class BodyPartsTest < ActionController::TestCase
RENDERINGS = [Object.new, Object.new, Object.new]
class TestController < ActionController::Base
def performed?
defined?(ActionController::Http) ? true : super
end
def index
RENDERINGS.each do |rendering|
@template.punctuate_body! rendering
end
@performed_render = true
end
end
tests TestController
def test_body_parts
get :index
pending(:old_base) do
# TestProcess buffers body_parts into body
# TODO: Rewrite test w/o going through process
assert_equal RENDERINGS, @response.body_parts
end
assert_equal RENDERINGS.join, @response.body
end
end