Sha256: 73b476b27f7a5b7a09a2b9e73448688e9cc40870881c1faadc4433fb84a221f7

Contents?: true

Size: 1.31 KB

Versions: 10

Compression:

Stored size: 1.31 KB

Contents

# encoding: utf-8

require 'spec_helper'

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

  it 'registers an offense for block argument with space before comma' do
    inspect_source(cop, ['each { |s , t| }'])
    expect(cop.messages).to eq(
      ['Space found before comma.'])
  end

  it 'registers an offense for array index with space before comma' do
    inspect_source(cop, ['formats[0 , 1]'])
    expect(cop.messages).to eq(
      ['Space found before comma.'])
  end

  it 'registers an offense for method call arg with space before comma' do
    inspect_source(cop, ['a(1 , 2)'])
    expect(cop.messages).to eq(
      ['Space found before comma.'])
  end

  it 'does not register an offense for no spaces before comma' do
    inspect_source(cop, ['a(1, 2)'])
    expect(cop.messages).to be_empty
  end

  it 'auto-corrects space before comma' do
    new_source = autocorrect_source(cop,
                                    'each { |s , t| a(1 , formats[0 , 1])}')
    expect(new_source).to eq('each { |s, t| a(1, formats[0, 1])}')
  end

  it 'handles more than one space before a comma' do
    new_source = autocorrect_source(cop,
                                    'each { |s  , t| a(1  , formats[0  , 1])}')
    expect(new_source).to eq('each { |s, t| a(1, formats[0, 1])}')
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

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