Sha256: f6759ea7c8fee247bd1da6fb42324049725ddbcbcf00ba8be6168cf0890543b8
Contents?: true
Size: 999 Bytes
Versions: 4
Compression:
Stored size: 999 Bytes
Contents
# frozen_string_literal: true module ActionView module Component module TestHelpers def render_inline(component, **args, &block) Nokogiri::HTML.fragment(controller.view_context.render(component, args, &block)) end def controller @controller ||= ApplicationController.new.tap { |c| c.request = request } end def request @request ||= ActionDispatch::TestRequest.create end def render_component(component, **args, &block) ActiveSupport::Deprecation.warn( "`render_component` has been deprecated in favor of `render_inline`, and will be removed in v2.0.0." ) render_inline(component, args, &block) end def with_variant(variant) old_variants = controller.view_context.lookup_context.variants controller.view_context.lookup_context.variants = variant yield controller.view_context.lookup_context.variants = old_variants end end end end
Version data entries
4 entries across 4 versions & 1 rubygems