Sha256: b5e1bdb2dcc17ed45984ad66833206f6ca10356971289c27e1118272af1abdce

Contents?: true

Size: 606 Bytes

Versions: 6

Compression:

Stored size: 606 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Rubocop::Cop::Style::ModuleFunction do
  subject(:cop) { described_class.new }

  it 'registers an offense for extend self in module' do
    inspect_source(cop,
                   ['module Test',
                    '  extend self',
                    '  def test; end',
                    'end'])
    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.offenses).to be_empty
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-0.22.0 spec/rubocop/cop/style/module_function_spec.rb
rubocop-0.21.0 spec/rubocop/cop/style/module_function_spec.rb
rubocop-0.20.1 spec/rubocop/cop/style/module_function_spec.rb
rubocop-0.20.0 spec/rubocop/cop/style/module_function_spec.rb
rubocop-0.19.1 spec/rubocop/cop/style/module_function_spec.rb
rubocop-0.19.0 spec/rubocop/cop/style/module_function_spec.rb