spec/rubocop/cop/style/module_function_spec.rb in rubocop-0.18.1 vs spec/rubocop/cop/style/module_function_spec.rb in rubocop-0.19.0

- old
+ new

@@ -3,22 +3,22 @@ require 'spec_helper' describe Rubocop::Cop::Style::ModuleFunction do subject(:cop) { described_class.new } - it 'registers an offence for extend self in module' do + it 'registers an offense for extend self in module' do inspect_source(cop, ['module Test', ' extend self', ' def test; end', 'end']) - expect(cop.offences.size).to eq(1) + expect(cop.offenses.size).to eq(1) end it 'accepts extend self in class' do inspect_source(cop, ['class Test', ' extend self', 'end']) - expect(cop.offences).to be_empty + expect(cop.offenses).to be_empty end end