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

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/if_with_semicolon_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/if_with_semicolon_spec.rb
rubocop-0.27.0 spec/rubocop/cop/style/if_with_semicolon_spec.rb
rubocop-0.26.1 spec/rubocop/cop/style/if_with_semicolon_spec.rb
rubocop-0.26.0 spec/rubocop/cop/style/if_with_semicolon_spec.rb
rubocop-0.25.0 spec/rubocop/cop/style/if_with_semicolon_spec.rb
rubocop-0.24.1 spec/rubocop/cop/style/if_with_semicolon_spec.rb
rubocop-0.24.0 spec/rubocop/cop/style/if_with_semicolon_spec.rb