Sha256: 53af6a3276b0f7f956aa036929879969f3bf63309741feaaa464a96d71a60a16

Contents?: true

Size: 802 Bytes

Versions: 11

Compression:

Stored size: 802 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

  it 'reports an offense for a raise with RuntimeError' do
    inspect_source(cop, ['raise RuntimeError, msg'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'reports an offense for a fail with RuntimeError' do
    inspect_source(cop, ['fail RuntimeError, msg'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'accepts a raise with RuntimeError if it does not have 2 args' do
    inspect_source(cop, ['raise RuntimeError, msg, caller'])
    expect(cop.offenses).to be_empty
  end

  it 'accepts a fail with RuntimeError if it does not have 2 args' do
    inspect_source(cop, ['fail RuntimeError, msg, caller'])
    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/redundant_exception_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.28.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.27.1 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.27.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.26.1 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.26.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.25.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.24.1 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.24.0 spec/rubocop/cop/style/redundant_exception_spec.rb
rubocop-0.23.0 spec/rubocop/cop/style/redundant_exception_spec.rb