Sha256: 89a793182c34822b37c0662ac2882ea29c52f6e36e5e42c167b505bfc844e983
Contents?: true
Size: 400 Bytes
Versions: 11
Compression:
Stored size: 400 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe RuboCop::Cop::Style::OneLineConditional do subject(:cop) { described_class.new } it 'registers an offense for one line if/then/end' do inspect_source(cop, ['if cond then run else dont end']) expect(cop.messages).to eq(['Favor the ternary operator (?:)' \ ' over if/then/else/end constructs.']) end end
Version data entries
11 entries across 11 versions & 2 rubygems