Sha256: 12f474087f1272e524ee0d6a2d559a421f30b51fcf2363b7a3e315c15f04622b
Contents?: true
Size: 1.19 KB
Versions: 4
Compression:
Stored size: 1.19 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module RSpec # This cop checks void `expect()`. # # @example # # bad # expect(something) # # # good # expect(something).to be(1) class VoidExpect < Cop MSG = 'Do not use `expect()` without `.to` or `.not_to`. ' \ 'Chain the methods or remove it.'.freeze def_node_matcher :expect?, <<-PATTERN (send nil :expect ...) PATTERN def_node_matcher :expect_block?, <<-PATTERN (block #expect? (args) _body) PATTERN def on_send(node) return unless expect?(node) check_expect(node) end def on_block(node) return unless expect_block?(node) check_expect(node) end private def check_expect(node) return unless void?(node) add_offense(node, :expression) end def void?(expect) parent = expect.parent return true unless parent return true if parent.begin_type? return true if parent.block_type? && parent.children[2] == expect end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems