lib/rubocop/cop/rspec/describe_method.rb in rubocop-rspec-2.12.1 vs lib/rubocop/cop/rspec/describe_method.rb in rubocop-rspec-2.13.0
- old
+ new
@@ -14,9 +14,10 @@
# describe MyClass, '#my_instance_method' do
# end
#
# describe MyClass, '.my_class_method' do
# end
+ #
class DescribeMethod < Base
include TopLevelGroup
MSG = 'The second argument to describe should be the method ' \
"being tested. '#instance' or '.class'."