Sha256: 4a33e3923a6beb83c2bbadc7b20e44928458ab006111b4f204ccdec810b3a8bd
Contents?: true
Size: 1.57 KB
Versions: 13
Compression:
Stored size: 1.57 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Minitest # Enforces the test to use `refute_path_exists` instead of using `refute(File.exist?(path))`. # # @example # # bad # refute(File.exist?(path)) # refute(File.exist?(path), 'message') # # # good # refute_path_exists(path) # refute_path_exists(path, 'message') # class RefutePathExists < Base extend AutoCorrector MSG = 'Prefer using `%<good_method>s`.' RESTRICT_ON_SEND = %i[refute].freeze def_node_matcher :refute_file_exists, <<~PATTERN (send nil? :refute (send (const _ :File) {:exist? :exists?} $_) $...) PATTERN def on_send(node) refute_file_exists(node) do |path, failure_message| failure_message = failure_message.first good_method = build_good_method(node, path, failure_message) message = format(MSG, good_method: good_method) add_offense(node, message: message) do |corrector| corrector.replace(node.loc.selector, 'refute_path_exists') corrector.replace(node.first_argument, path.source) end end end private def build_good_method(node, path, message) args = [path.source, message&.source].compact.join(', ') if node.parenthesized? "refute_path_exists(#{args})" else "refute_path_exists #{args}" end end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems