aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template/erb/helper.rb
blob: 78fc0d4290541cc4589bb8633d0411b7408d8a87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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