Sha256: b44af184d00ec1b7b7bec2462df3d8801f879b42bf888a47b8bfd1aa3cc19b34
Contents?: true
Size: 1.63 KB
Versions: 6
Compression:
Stored size: 1.63 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Rubocop::Cop::Style::LeadingCommentSpace do subject(:cop) { described_class.new } it 'registers an offense for comment without leading space' do inspect_source(cop, ['#missing space']) expect(cop.offenses.size).to eq(1) end it 'does not register an offense for # followed by no text' do inspect_source(cop, ['#']) expect(cop.offenses).to be_empty end it 'does not register an offense for more than one space' do inspect_source(cop, ['# heavily indented']) expect(cop.offenses).to be_empty end it 'does not register an offense for more than one #' do inspect_source(cop, ['###### heavily indented']) expect(cop.offenses).to be_empty end it 'does not register an offense for only #s' do inspect_source(cop, ['######']) expect(cop.offenses).to be_empty end it 'does not register an offense for #! on first line' do inspect_source(cop, ['#!/usr/bin/ruby', 'test']) expect(cop.offenses).to be_empty end it 'registers an offense for #! after the first line' do inspect_source(cop, ['test', '#!/usr/bin/ruby']) expect(cop.offenses.size).to eq(1) end it 'accepts rdoc syntax' do inspect_source(cop, ['#++', '#--', '#:nodoc:']) expect(cop.offenses).to be_empty end it 'auto-corrects missing space' do new_source = autocorrect_source(cop, '#comment') expect(new_source).to eq('# comment') end end
Version data entries
6 entries across 6 versions & 1 rubygems