lib/rubocop/rspec/language/node_pattern.rb in rubocop-rspec-1.14.0 vs lib/rubocop/rspec/language/node_pattern.rb in rubocop-rspec-1.15.0

- old
+ new

@@ -6,9 +6,14 @@ # Common node matchers used for matching against the rspec DSL module NodePattern extend RuboCop::NodePattern::Macros def_node_matcher :example_group?, ExampleGroups::ALL.block_pattern + + def_node_matcher :example_group_with_body?, <<-PATTERN + (block #{ExampleGroups::ALL.send_pattern} args [!nil]) + PATTERN + def_node_matcher :example?, Examples::ALL.block_pattern end end end end