Sha256: e13f0c98f14d8e9be058c37ee3050576426b2029cb82de6969b24e3650106a71

Contents?: true

Size: 594 Bytes

Versions: 11

Compression:

Stored size: 594 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe RuboCop::Cop::Style::NestedTernaryOperator do
  subject(:cop) { described_class.new }

  it 'registers an offense for a nested ternary operator expression' do
    inspect_source(cop, ['a ? (b ? b1 : b2) : a2'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'accepts a non-nested ternary operator within an if' do
    inspect_source(cop, ['a = if x',
                         '  cond ? b : c',
                         'else',
                         '  d',
                         'end'])
    expect(cop.offenses).to be_empty
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

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