Sha256: f259576fc5bac3e573461f4e1b8ce3e699c8d2d2aba29986f588c6296566a701

Contents?: true

Size: 1.44 KB

Versions: 233

Compression:

Stored size: 1.44 KB

Contents

# frozen_string_literal: true

require "active_support/concern"
require "active_support/inflector"

module ActiveSupport
  module Testing
    # Resolves a constant from a minitest spec name.
    #
    # Given the following spec-style test:
    #
    #   describe WidgetsController, :index do
    #     describe "authenticated user" do
    #       describe "returns widgets" do
    #         it "has a controller that exists" do
    #           assert_kind_of WidgetsController, @controller
    #         end
    #       end
    #     end
    #   end
    #
    # The test will have the following name:
    #
    #   "WidgetsController::index::authenticated user::returns widgets"
    #
    # The constant WidgetsController can be resolved from the name.
    # The following code will resolve the constant:
    #
    #   controller = determine_constant_from_test_name(name) do |constant|
    #     Class === constant && constant < ::ActionController::Metal
    #   end
    module ConstantLookup
      extend ::ActiveSupport::Concern

      module ClassMethods  # :nodoc:
        def determine_constant_from_test_name(test_name)
          names = test_name.split "::"
          while names.size > 0 do
            names.last.sub!(/Test$/, "")
            begin
              constant = names.join("::").safe_constantize
              break(constant) if yield(constant)
            ensure
              names.pop
            end
          end
        end
      end
    end
  end
end

Version data entries

233 entries across 218 versions & 28 rubygems

Version Path
activesupport-7.0.8.5 lib/active_support/testing/constant_lookup.rb
activesupport-8.0.0.beta1 lib/active_support/testing/constant_lookup.rb
omg-activesupport-8.0.0.alpha9 lib/active_support/testing/constant_lookup.rb
omg-activesupport-8.0.0.alpha8 lib/active_support/testing/constant_lookup.rb
omg-activesupport-8.0.0.alpha7 lib/active_support/testing/constant_lookup.rb
omg-activesupport-8.0.0.alpha4 lib/active_support/testing/constant_lookup.rb
omg-activesupport-8.0.0.alpha3 lib/active_support/testing/constant_lookup.rb
omg-activesupport-8.0.0.alpha2 lib/active_support/testing/constant_lookup.rb
omg-activesupport-8.0.0.alpha1 lib/active_support/testing/constant_lookup.rb
activesupport-7.1.4 lib/active_support/testing/constant_lookup.rb
activesupport-7.2.1 lib/active_support/testing/constant_lookup.rb
activesupport-7.2.0 lib/active_support/testing/constant_lookup.rb
activesupport-7.2.0.rc1 lib/active_support/testing/constant_lookup.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/testing/constant_lookup.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.8.4/lib/active_support/testing/constant_lookup.rb
activesupport-7.2.0.beta3 lib/active_support/testing/constant_lookup.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/testing/constant_lookup.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/testing/constant_lookup.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/testing/constant_lookup.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/testing/constant_lookup.rb