Sha256: 5c615c1a1a6bb57b754d5167aa452ee352245f10a9300c97ec3c34b84aa9429d

Contents?: true

Size: 1.65 KB

Versions: 3

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Minitest
      # This cop enforces that test method names start with `test_` prefix.
      #
      # @example
      #   # bad
      #   class FooTest < Minitest::Test
      #     def does_something
      #       assert_equal 42, do_something
      #     end
      #   end
      #
      #   # good
      #   class FooTest < Minitest::Test
      #     def test_does_something
      #       assert_equal 42, do_something
      #     end
      #   end
      #
      class TestMethodName < Cop
        include MinitestExplorationHelpers
        include DefNode

        MSG = 'Test method name should start with `test_` prefix.'

        def on_class(class_node)
          return unless test_class?(class_node)

          class_elements(class_node).each do |node|
            add_offense(node, location: :name) if offense?(node)
          end
        end

        def autocorrect(node)
          lambda do |corrector|
            corrector.replace(node.loc.name, "test_#{node.method_name}")
          end
        end

        private

        def class_elements(class_node)
          class_def = class_node.body
          return [] unless class_def

          if class_def.def_type?
            [class_def]
          else
            class_def.each_child_node(:def).to_a
          end
        end

        def offense?(node)
          public?(node) && !test_method_name?(node) && !lifecycle_hook_method?(node)
        end

        def public?(node)
          !non_public?(node)
        end

        def test_method_name?(node)
          node.method_name.to_s.start_with?('test_')
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubocop-minitest-0.10.2 lib/rubocop/cop/minitest/test_method_name.rb
rubocop-minitest-0.10.1 lib/rubocop/cop/minitest/test_method_name.rb
rubocop-minitest-0.10.0 lib/rubocop/cop/minitest/test_method_name.rb