aboutsummaryrefslogblamecommitdiffstats
path: root/actionview/test/template/erb/helper.rb
blob: 78fc0d4290541cc4589bb8633d0411b7408d8a87 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             

                   
                                          
                                        



                                                 
                                             

                                            




                                               
                                                                                                    





                                        
   
# frozen_string_literal: true
module ERBTest
  class ViewContext
    include ActionView::Helpers::UrlHelper
    include SharedTestRoutes.url_helpers
    include ActionView::Helpers::TagHelper
    include ActionView::Helpers::JavaScriptHelper
    include ActionView::Helpers::FormHelper

    attr_accessor :output_buffer, :controller

    def protect_against_forgery?() false end
  end

  class BlockTestCase < ActiveSupport::TestCase
    def render_content(start, inside)
      template = block_helper(start, inside)
      ActionView::Template::Handlers::ERB.erb_implementation.new(template).evaluate(ViewContext.new)
    end

    def block_helper(str, rest)
      "<%= #{str} do %>#{rest}<% end %>"
    end
  end
end