# typed: strict # frozen_string_literal: true module Spoom module Deadcode module Plugins class Minitest < Base extend T::Sig ignore_classes_named(/Test$/) ignore_methods_named( "after_all", "around", "around_all", "before_all", "setup", "teardown", ) sig { override.params(definition: Model::Method).void } def on_define_method(definition) file = definition.location.file @index.ignore(definition) if file.match?(%r{test/.*test\.rb$}) && definition.name.match?(/^test_/) end end end end end