lib/rubocop/cop/rspec/it_behaves_like.rb in rubocop-rspec-1.42.0 vs lib/rubocop/cop/rspec/it_behaves_like.rb in rubocop-rspec-1.43.0

- old
+ new

@@ -16,10 +16,10 @@ # # bad # it_behaves_like 'a foo' # # # good # it_should_behave_like 'a foo' - class ItBehavesLike < Cop + class ItBehavesLike < Base extend AutoCorrector include ConfigurableEnforcedStyle MSG = 'Prefer `%<replacement>s` over `%<original>s` when including '\ 'examples in a nested context.'