Sha256: f8f50f4c3b707deaf5cd3ebcfa0b9d1a3cfd3a0829c0b4cde74678a27a0340e3

Contents?: true

Size: 745 Bytes

Versions: 12

Compression:

Stored size: 745 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe RuboCop::Cop::Style::Attr do
  subject(:cop) { described_class.new }

  it 'registers an offense attr' do
    inspect_source(cop, ['class SomeClass',
                         '  attr :name',
                         'end'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'accepts attr when it does not take arguments' do
    inspect_source(cop, 'func(attr)')
    expect(cop.offenses).to be_empty
  end

  it 'accepts attr when it has a receiver' do
    inspect_source(cop, 'x.attr arg')
    expect(cop.offenses).to be_empty
  end

  it 'auto-corrects attr to attr_reader' do
    new_source = autocorrect_source(cop, 'attr :name')
    expect(new_source).to eq('attr_reader :name')
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/attr_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/attr_spec.rb
rubocop-0.29.1 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.29.0 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.28.0 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.27.1 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.27.0 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.26.1 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.26.0 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.25.0 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.24.1 spec/rubocop/cop/style/attr_spec.rb
rubocop-0.24.0 spec/rubocop/cop/style/attr_spec.rb