Sha256: cd304ca03406d7e45402373513edd1a589eac9bd40baa5b2430a74560902846e

Contents?: true

Size: 887 Bytes

Versions: 11

Compression:

Stored size: 887 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

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

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

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

  it 'auto-corrects missing space' 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

11 entries across 11 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_after_comma_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.28.0 spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.27.1 spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.27.0 spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.26.1 spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.26.0 spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.25.0 spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.24.1 spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.24.0 spec/rubocop/cop/style/space_after_comma_spec.rb
rubocop-0.23.0 spec/rubocop/cop/style/space_after_comma_spec.rb