Sha256: 2396e42493c9013b5a5ea15e9d8e4cfbc40171f6e34df056afb99f1a781c038b
Contents?: true
Size: 672 Bytes
Versions: 8
Compression:
Stored size: 672 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe RuboCop::Cop::Style::IfWithSemicolon do subject(:cop) { described_class.new } it 'registers an offense for one line if/;/end' do inspect_source(cop, ['if cond; run else dont end']) expect(cop.messages).to eq( ['Never use if x; Use the ternary operator instead.']) end it 'accepts one line if/then/end' do inspect_source(cop, ['if cond then run else dont end']) expect(cop.messages).to be_empty end it 'can handle modifier conditionals' do inspect_source(cop, ['class Hash', 'end if RUBY_VERSION < "1.8.7"']) expect(cop.messages).to be_empty end end
Version data entries
8 entries across 8 versions & 2 rubygems