Sha256: fac26f1c742f3f45dc3d9be6a84fd9168167125a575c8138eb3539c62b510c87
Contents?: true
Size: 1006 Bytes
Versions: 5
Compression:
Stored size: 1006 Bytes
Contents
# frozen_string_literal: true module ActionView module Component module TestHelpers def render_inline(component, **args, &block) Nokogiri::HTML(controller.view_context.render(component, args, &block)).css("body > *") 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
5 entries across 5 versions & 1 rubygems