Sha256: c8a4effd5f6ebc150faa5f739de064b28a568e067de9bd2288c8251b7b9aa91f
Contents?: true
Size: 627 Bytes
Versions: 11
Compression:
Stored size: 627 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe RuboCop::Cop::Style::SpaceAfterSemicolon do subject(:cop) { described_class.new } it 'registers an offense for semicolon without space after it' do inspect_source(cop, ['x = 1;y = 2']) expect(cop.messages).to eq( ['Space missing after semicolon.']) end it 'does not crash if semicolon is the last character of the file' do inspect_source(cop, ['x = 1;']) expect(cop.messages).to be_empty end it 'auto-corrects missing space' do new_source = autocorrect_source(cop, 'x = 1;y = 2') expect(new_source).to eq('x = 1; y = 2') end end
Version data entries
11 entries across 11 versions & 2 rubygems