Sha256: 16082f2b9df94d009ff1a8ac67e2257ec254f789109815200c268684b0f3fb96
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 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 < Base MSG = 'Do not use `expect()` without `.to` or `.not_to`. ' \ 'Chain the methods or remove it.' RESTRICT_ON_SEND = %i[expect].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) end def void?(expect) parent = expect.parent return true unless parent return true if parent.begin_type? return true if parent.block_type? && parent.body == expect end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubocop-rspec-2.2.0 | lib/rubocop/cop/rspec/void_expect.rb |