Sha256: 5fa697f3ea95fdb0dcd0d09a6e7bcca385c05d033dd24c36eb07669a96b1cd88

Contents?: true

Size: 545 Bytes

Versions: 11

Compression:

Stored size: 545 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

  it 'reports an offense for space after !' do
    inspect_source(cop, ['! something'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'accepts no space after !' do
    inspect_source(cop, ['!something'])
    expect(cop.offenses).to be_empty
  end

  it 'auto-corrects by removing redundant space' do
    new_source = autocorrect_source(cop, '!  something')
    expect(new_source).to eq('!something')
  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_not_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.28.0 spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.27.1 spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.27.0 spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.26.1 spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.26.0 spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.25.0 spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.24.1 spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.24.0 spec/rubocop/cop/style/space_after_not_spec.rb
rubocop-0.23.0 spec/rubocop/cop/style/space_after_not_spec.rb