lib/rubocop/cop/minitest/test_method_name.rb in rubocop-minitest-0.19.1 vs lib/rubocop/cop/minitest/test_method_name.rb in rubocop-minitest-0.20.0

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true module RuboCop module Cop module Minitest - # This cop enforces that test method names start with `test_` prefix. + # Enforces that test method names start with `test_` prefix. # It aims to prevent tests that aren't executed by forgetting to start test method name with `test_`. # # @example # # bad # class FooTest < Minitest::Test